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

Handling Nulls in Measures | Qlik Sense

Hi Everyone ,

I am working on a visual(table) which has more than one measure.
And for one of the measures I don't want null values to be displayed in the table.

I did uncheck the 'include zero values' in Addon.

But I think qlik doesnot filter the row based on just one measure , all the measures need to be null for it to work.
Is this correct?
If so are there any approaches to filter rows even when one of the measures is null.

AnkitMadhukar_0-1604992264675.png



I only want the rows for which value is present in the measure 1 column






thanks
Best Regards,
Ankit 

Labels (1)
  • SaaS

1 Solution

Accepted Solutions
MayilVahanan

HI @AnkitMadhukar 

I think qlik doesnot filter the row based on just one measure , all the measures need to be null for it to work. <-- yes, its correct.

I only want the rows for which value is present in the measure 1 column
<-- Try like below in the measure 2, 
if(Measure1 >0, Measure2)

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

2 Replies
MayilVahanan

HI @AnkitMadhukar 

I think qlik doesnot filter the row based on just one measure , all the measures need to be null for it to work. <-- yes, its correct.

I only want the rows for which value is present in the measure 1 column
<-- Try like below in the measure 2, 
if(Measure1 >0, Measure2)

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
AnkitMadhukar
Creator
Creator
Author

Thanks @MayilVahanan  ,
Yeah just figured that out , need to add that condition to all the measures in the view.
Not that user friendly to be honest 🙂