Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
bartwelvaarts
Contributor III
Contributor III

calculate amount with null values

hello friends of the qlik community,

I would like to calculate the amount where the date is higher then 'X' or where a date does not exists. But it does not calculate the records with null values. I tried this, but it did not work. Does someone have any suggestions?

final:
load
amount
from 'source'
where date_1 <= 30-04-21

and date_2 > 30-04-21

or isnull(date_2)

 

1 Reply
JuanGerardo
Partner - Specialist
Partner - Specialist

Maybe date format can help:

final:
load
amount
from 'source'
where date_1 <=Date#('30-04-21', 'DD-MM-YY')

and date_2 > Date#('30-04-21', 'DD-MM-YY')

or isnull(date_2)

JG