Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
sunitha_chellaiah
Partner - Creator
Partner - Creator

To show only null records in straight table

Hi All,

I  want to show only null records in straight table for the column Agreed delivery date.

I am using below mentioned expression in measure.

=IF(IF(InList=1,(MAX({<[SDLNTY - Line Type]={'S'}>}[SDURDT - Date - Agreed Delivery])-MIN({<[SDLNTY - Line Type]={'S'}>}[SDURDT - Date - Agreed Delivery])),0)>0,'Multiple Dates')

PFA.

Null Values.png

 

3 Replies
tresesco
MVP
MVP

You may try using the reverse condition in IF, like:

If( <expression>   <=0, '-')             // or, you can use null() instead of '-' depending upon effect of the default suppress nuisance   

sunitha_chellaiah
Partner - Creator
Partner - Creator
Author

How do I remove that 'Multiple Dates' records from the table. I need to remove that whole rows.

tresesco
MVP
MVP

Could you share your sample app?