Omi
Omi

Reputation: 4007

Escape double quotes in string in crystal report

How to do escape double quote in crystal report function My Code:

Function GetResult()
        Dim Result As String
if () the
      Result = "ckl"B"
else 
end if

Note: I am using basic syntax for function

Upvotes: 3

Views: 3222

Answers (1)

Smita Ahinave
Smita Ahinave

Reputation: 1888

There is no need to write a function ..Simply way is

replace({table.field},"""","" ) or

replace({table.field},chrW(34),"" )

Upvotes: 3

Related Questions