Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
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