Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
in excel i have use this formula, how to convert into qlikview logic
=IF(ISNUMBER(SEARCH("outside",A2)),"Outside","Inside")
PFA
May be this
If(WildMatch(Input, '*Outside*'), 'Outside', 'Inside') as Output
May be this
If(WildMatch(Input, '*Outside*'), 'Outside', 'Inside') as Output
Or This?
If(SubStringCount(Input, 'OUTSIDE'),'Outside','Inside') as Output