Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have a field which have a quote as :
- String's
- J'aime
How can I handle this in expression like sum( If ( FIELD = ' my string value' , NumField))
Any idea
JJ
try this:
sum( If ( FIELD = 'J' & chr(39) & 'aime' , NumField))
instead of " J'aime "
The Chr(39) substitutes the ' character.
i am not sure
try this
sum( If ( FIELD = '[ my string value]' , NumField))
Thanks but it doesnt' work !
try this:
sum( If ( FIELD = 'J' & chr(39) & 'aime' , NumField))
instead of " J'aime "
The Chr(39) substitutes the ' character.
Try
sum( If ( FIELD = 'String' & Chr(39) &'s' , NumField))
Thanks guys it works like a charm !
JJ