Skip to main content
Announcements
Qlik Acquires Upsolver to Advance Iceberg Solutions: READ MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to exclude the field values?

Hi All,

I have one one field name called "Job board". In that so many field values are there but i have to exclude those field values which i mentioned below in points:

1. Any job board that begins with the character of string "Free_" (Need to be excluded)

2. any job board that begins with the character of string "Compliance_"(Need to be excluded)

3. Any Job board that begins with the character of string "States_"(Need to be excluded)

I have to do in charts (in dimension)

Anyone suggest me how to do this?

Thanks,

Nisha.

1 Solution

Accepted Solutions
pokassov
Specialist
Specialist

Hello!

1. Add Calculated Dimension

if(index( [Job board],'Free_')>0 or index( [Job board],'Compliance_')>0 or index( [Job board],'States_')>0, null(), [Job board])

2. Check "Supress when value is null"

3. Check "Lable" and write "Job board" in the next line.

Sergey

View solution in original post

6 Replies
nagarjuna_kotha
Partner - Specialist II
Partner - Specialist II

Hi Nisha,

Try this..

=max({<$(=concat({<$Field-={'Year','WeekType','CalendarType'}>} '[' & $Field & ']=',','))>} WeekEnd)


Regards,

Nagarjuna

pokassov
Specialist
Specialist

Hello!

1. Add Calculated Dimension

if(index( [Job board],'Free_')>0 or index( [Job board],'Compliance_')>0 or index( [Job board],'States_')>0, null(), [Job board])

2. Check "Supress when value is null"

3. Check "Lable" and write "Job board" in the next line.

Sergey

stabben23
Partner - Master
Partner - Master

Hi,

in chart use set analysis in your exression like

sum({<"Job board"-={'Free_*', Compliance_*','States_*'}>}value)

PrashantSangle

Hi,

Use conditional dimension,

try below,

if(not wildmatch([Job Board],'Free_*','Compliance_*','States_*'),[Job Board])

and check supress null

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Anonymous
Not applicable
Author

Hi All,

Thank you so much. All the above solutions are working. Thanks a lot.

jagan
Luminary Alumni
Luminary Alumni

Hi,

Try like this much easier and efficient

1. Add Calculated Dimension

if(Not WildMatch([Job board], 'Free_*', 'Compliance_*', 'States_*'),[Job board])

2. Check "Supress when value is null"

Regards,

Jagan.