
Contributor
2019-05-27
02:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
exclude comment in filter
I want to create a filter for comment section
Yes -Include only "Burn and discoloration on lcd,"
No - Exclude all the "Burn and discoloration on lcd"
See my file
Best regard
Mikael
1,059 Views
1 Solution
Accepted Solutions

MVP
2019-05-27
03:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
1,045 Views
5 Replies

MVP
2019-05-27
03:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
1,046 Views

Contributor
2019-05-27
03:31 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Do I do this in Dataimport? (I get a failure right now)
1,041 Views

Specialist II
2019-05-27
03:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Please check if the attached file works for you
1,038 Views

Specialist II
2019-05-27
03:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Please check if the attached file works for you
1,037 Views

MVP
2019-05-27
04:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@mg862925 Yes you can do this in the data importer as I did in my example, but you can also do it your self in the script editor like in the script below.
[Qlikforum]:
LOAD
[InspectionComments],
if( match([InspectionComments],'Burn-ins and discoloration on LCD.'),
'Yes','No') AS [Exclude comments (case sensitive)],
if( wildmatch([InspectionComments], 'BuRn-InS aNd DiScOlOrAtIoN oN LcD.'),
'Yes','No') AS [Exclude comment (case insensitive)],
if( wildmatch([InspectionComments], 'Burn-ins and discoloration*', 'Airbubble*'),
'Yes','No') AS [Exclude comment (wildchar and case insensitive)]
FROM
[lib://Downloads/qlikforum.xlsx]
(ooxml, embedded labels, table is Sheet1);
Vegar
Qlik Community MVP
Qlik Community MVP
1,027 Views
