Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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