Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Saiteja1
Contributor III
Contributor III

Exclude one field value

Hi 

I have one table in qliksense . I need to exclude one value called (Other Not Mapped) in a field called (State). How can I exclude  it in only that table in qliksense

Please give me some suggestions to exclude that value 

 

 

 

 

 

6 Replies
abhijitnalekar
Specialist II
Specialist II

Hi @Saiteja1 ,

Can you please elaborate on the scenario?

as you want to exclude from whole or it is restricted only for chart or table  

 

Regards,
Abhijit
keep Qliking...
Help users find answers! Don't forget to mark a solution that worked for you!
Saiteja1
Contributor III
Contributor III
Author

It is restricted only for that chart . Not in script 

Anku
Creator
Creator

@Saiteja1  try

IF( State like 'Other Not Mapped','',State)

Saiteja1
Contributor III
Contributor III
Author

@Anku 

It is not working

Anku
Creator
Creator

@Saiteja1 

State is your dimension. Right?

If( State <>'Other Not Mapped', State,'')

Though it's also similar to the below one.

Check

1. case sensitivity,

2. Uncheck include null values from dimension and zeros from add-on-> data handling-> uncheck

Also, check is there any limitation applied under the dimension.

 

 

jmartineze
Partner - Creator
Partner - Creator

Hi, 

use set analysis in your measure.

Like this: count( {<[Other Not Mapped]=-{'State'}>} Field)