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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Nulls in the expression

hello friends...

how do I delete nulls in the expression?

I have date field, with null values (in expression).. Can I delete they??

4 Replies
Not applicable
Author

Hi Rodrigoreis:

In the properties of the chart on the tab dimensions, you have to check the option "Supress when value is null", i think this may work to you. Tell us if it was your answer.

Regards

Orlando

Not applicable
Author

I need delete nulls in the expression, in tab expression...

prieper
Master II
Master II

Typically you should not have a date as an expression - it would rather be a dimension (with the solution made by Orlando). In an expression you might wish to see results of an aggregation, like MAX(MyDate) - but this will ignore NULLs.

HTH
Peter

Not applicable
Author

If you want to do it from expression you can do it with a conditional:

If (FIELD <> NULL)

Your expresion.

Or

If you are going to do a SUM in your expression:

SUM ( {1 - $< FIELD = {NULL}>} FIELD)

Maybe if you explain us a little more about your question we can help you more.

Regards

Orlando