Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

EXCEL formula

Status
Not open for further replies.

wuwang

Programmer
May 16, 2001
48
US
Hi,


I like to put a formula in character column and the output
should be with single quote (e.g. 'here is output').
I was told to use formula in edit formula like
= """"&D2&""""
but the output is double quote "here is output".

Could you help me with this problem?

Thanks

Laura
 

=+CHAR(39)&"Here is quote"&CHAR(39)
or
=+CHAR(39)&D2&CHAR(39)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top