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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
JacobJones
Creator
Creator

IsNull for Date works in a table but not in bar chart or KPI

So if I include:

=if(IsNull([Date of Appointment]), [Date of Appointment])

In a table, it only returns many records  that have a null Date of Appointment

 

However, if I try and use it as a measure:

=count(if(IsNull([Date of Appointment]), [Date of Appointment]))

it counts zero. 

 

 

Any ideas?

 

 

1 Solution

Accepted Solutions
Vegar
MVP
MVP

Try to use 

=NullCount([Date of Appointment])

View solution in original post

2 Replies
Vegar
MVP
MVP

Try to use 

=NullCount([Date of Appointment])

JacobJones
Creator
Creator
Author

Thank you so much, that did the trick.