Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
vengadeshpalani
Creator
Creator

How to convert Excel Search logic into QlikView logic

Hi All

in excel i have use this formula, how to convert into qlikview logic

=IF(ISNUMBER(SEARCH("outside",A2)),"Outside","Inside")

PFA

1 Solution

Accepted Solutions
sunny_talwar

May be this

If(WildMatch(Input, '*Outside*'), 'Outside', 'Inside') as Output

View solution in original post

2 Replies
sunny_talwar

May be this

If(WildMatch(Input, '*Outside*'), 'Outside', 'Inside') as Output

Anil_Babu_Samineni

Or This?

If(SubStringCount(Input, 'OUTSIDE'),'Outside','Inside') as Output

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful