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

Eliminate Null/Blank values in AdHoc Qliksense

Hi I'm trying elimiate NULL/Blank Values in AdHoc QlikSense Please advise an expression.

Only the one with the below criteria should appear.

1. ID with Start date but no date date/Blank is Ok

2. ID with No start date but end date is not OK

3. ID with No start and No end date/Blank is not OK

 

ID Start Date End Date
1 - -
1 - 01/03/2078
1 - -
2 - -
2 01/02/2022 01/01/2023
3 05/02/2022 -
3 - -

 

Labels (3)
5 Replies
neerajthakur
Creator III
Creator III

In Table there is Data option there you can unselect Include null values or to remove it from backend write where statement

where not isnull("Start Date");

Thanks & Regards,
Please Accepts as Solution if it solves your query.
smanas
Contributor III
Contributor III
Author

Thank you @neerajthakur  it is returning a -1 against each ID If I use - Not isNull("Start Date")

smanas
Contributor III
Contributor III
Author

Thank you @neerajthakur it's giving me a -1 when I add the above expression.

neerajthakur
Creator III
Creator III

Use this statement in load editor do you have these fields there or you are calculating it on frontend

You can use this also where isnull("Start Date")=0

Thanks & Regards,
Please Accepts as Solution if it solves your query.
smanas
Contributor III
Contributor III
Author

Hi @neerajthakur I'm not using any script I'm only using an Adhoc query.