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!

how to enclose variables in double quotes

Status
Not open for further replies.

tsuable

Programmer
Feb 2, 2005
41
US
'Declare Variable @73-61C0F773
Dim CenterList
CenterList = CCGetParam("CenterList","(0)")
CenterList = replace(Centerlist, " ", "")
'End Declare Variable

**the value of CenterList is (57,73)

how do i enclose it in double quotes so that i would get "(57,73)"

thanks,
 
Try using a formula field,
Code:
"""" & @73-61C0F773 & """"
This might vary between Crystal versions.

[yinyang] Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10 [yinyang]
 
thanks Madawc

i was able to do it using trial and error...

"''"&CenterList&"''"

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top