Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
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