Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
Here is my expression :
WildMatch( DetailsLevel ,'Owner's Income',
'Foreign Income') = 0
The issue is I have other fields where it starts with 'Owner's. I only need to not display 'Owner's Income'
When I use this : 'Owner *' it removes the other fields that also starts with 'Owner's'.
Any ideas how to deal with apostrophes in field names ?
Have you tried with the Escape sequences
WildMatch( DetailsLevel ,'Owner''s Income', 'Foreign Income') = 0
Have you tried with the Escape sequences
WildMatch( DetailsLevel ,'Owner''s Income', 'Foreign Income') = 0
thanks got it