Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Azeem2018
Contributor
Contributor

Exclude rows from a Name Column based on certain text

hi,

New to qlik sense (previously working with Power BI and excel),

i have a name column which  contains rows which are dummy (like TEST1,TEst2,etc...)

1) i want a formula in 'Data load editor' or at back end to exclude such rows in final table which will be displayed in Analyze Sheet.

 

2) further when we have to apply a expression in front load or back end load. guide me some reading reference or some online course to understand.

in data load editor:

'RELATION_NAME,'

Relation _Name:

Mr. A

Mr. B

Test 1

Test 2

Mr. C

Mr. D

Mr. E

.

.

.

 

Mr. ABC .

Labels (4)
1 Reply
brunobertels
Master
Master

Hi 

see this example below with the wildmatch function : 

https://help.qlik.com/en-US/sense/August2022/Subsystems/Hub/Content/Sense_Hub/Scripting/ConditionalF... 

 

here wildmatch is using in a where clause 

inside the script it could seem somethink like 

if(wildmatch(Field,'X,''Y','Z'), Field, null()) as Field ,

Or if(wildmatch(Relation _Name,'*Mr*','*MR*),null(),Relation _Name) as Relation _Name,

 

hope it helps