App Development

Discuss and learn more about Qlik Sense app development and usage.

Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.

Who Me Too'd this solution

tresesco
MVP
MVP

Try like:

Map:
Mapping LOAD 
     Trim(SubField(Purgechar([substring's to check], chr(39)), ',')) as Substring,
     '|'&Category&'|'
FROM
[https://community.qlik.com/t5/App-Development/How-to-match-the-list-of-substrings-with-a-field-and-map-the/td-p/2011849]
(html, utf8, UserAgent is 'Mozilla/5.0', embedded labels, table is @2);


t2:	
LOAD Comment,
	 TextBetween( MapSubString('Map',Comment), '|', '|') as MappedCategory
FROM
[https://community.qlik.com/t5/App-Development/How-to-match-the-list-of-substrings-with-a-field-and-map-the/td-p/2011849]
(html, utf8, UserAgent is 'Mozilla/5.0', embedded labels, table is @1);

tresesco_0-1669960492625.png

View solution in original post

Who Me Too'd this solution