Forum Discussion
User777
3 years agoRegular Visitor
Quotation mark in Text Filter
I am having trouble to filter data in new column: I have new column which i want to be filled like Column 2 = if( [Retailer] = """KDK""", "YES", "NO") The data i am looking for in column Retai...
- 3 years ago
Another method
Column2 = VAR _text =UNICHAR(34)&"KDK"&UNICHAR(34) VAR _result = IF([Retailer]=_text,"Yes","No") return _result
nandukrishnavs
Community Champion
3 years ago
Another method
Column2 =
VAR _text =UNICHAR(34)&"KDK"&UNICHAR(34)
VAR _result = IF([Retailer]=_text,"Yes","No")
return _result