Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Sunil_Kenth
Former Employee
Former Employee

View records where null

HI,

I would like only to view in my straight table records where 'Date order placed' is blank.

This is expression i am using:

Sum( {$<[Date order placed]={“”}>} LineItems::PriceTotalSummary)

Can anyone tell me why this wont work?

Thanks.

Sunil

3 Replies
swuehl
MVP
MVP

I think that's because Null is not a value, so you can't select it (unless you specified NullAsValue in the load script).

But maybe this works:

sum(if(isNull([Date order placed])=-1, LineItems::PriceTotalSummary))

Regards,

Stefan

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

    Do following settings.

    Go to dimension tab, Select the dimensions and uncheck the option "Suppress When Value is Null"

 

    Go to Expression Tab -> Uncheck "Suppress Zero Value"

Regards,

Kaushik Solanki   

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
ToniKautto
Employee
Employee

Maybe a if statement could be utilized if you are looking for Null values?

Sum( If( IsNull([Date order placed]) LineItems::PriceTotalSummary)