Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

String search

In our SQL table, we are importing unstructured notes in one column. I would like to search for 'key word' and surrounding 200 words around key word. Is it possible in Qliview?

1 Solution

Accepted Solutions
Not applicable
Author

Thank you that helps.

View solution in original post

5 Replies
anbu1984
Master III
Master III

Check Index(),Match() or WildMatch()

robert_mika
Master III
Master III

Could you attached your sample?

sagarkharpude
Creator III
Creator III

Hi,

example:

IF(WildMatch(AC_4,'*Intercompany*')=1 AND AC_4<>'Subcontracting cost - Other than Intercompany',mid(AC_4,index(AC_4,'-',2)+1,210)) as INTER_COMPNAY 

The match function performs a case sensitive comparison while wildmatch & mixmatch function performs a case insensitive comparison.

Not applicable
Author

Thank you that helps.

sagarkharpude
Creator III
Creator III

please mark the correct answer and close the thread.