Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
sanjujeeboy
Creator
Creator

field value remove

i have a field called "description" in which there are 100 rows(string)

i want to remove some 10 rows based on word starting with "Sample".

how to achieve this?

1 Solution

Accepted Solutions
thevingo
Creator
Creator

Add this at the end of load table like

Your_Table:

Load ....

where not WildMatch(description,'Sample*');

View solution in original post

6 Replies
Anonymous
Not applicable

Use the function "Index"

Example:

IF(Index(FieldName, "Sample") > 0, "Do something here", "Else")

https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/StringFunction...

olivierrobin
Specialist III
Specialist III

hello

tou can use the match/wildmatch function

or maybe a condition like

left(description,6)='

sanjujeeboy
Creator
Creator
Author

how to use wildmatch in this case

olivierrobin
Specialist III
Specialist III

maybe

wildmatch(description,'Sample*')

if it matches, it returns 1

thevingo
Creator
Creator

Add this at the end of load table like

Your_Table:

Load ....

where not WildMatch(description,'Sample*');

sanjujeeboy
Creator
Creator
Author

thanks. it worked