Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a table and would like to only show rows where there is no date (nulls).
I tried =ISNULL(Date) in the expression box but this does not exclude the rows with dates.
Currently looks like:
ID | DATE |
---|---|
1 | 2018-01-01 10:00:00:000 |
2 | Null |
3 | Null |
What I would like:
ID | DATE |
---|---|
2 | Null |
3 | Null |
Could someone please help me as to how I can achieve this?
Thank you in advance for any help.
try
May be a calculated Dimension:
If(Len(Trim([DATE])) = 0, 'Null', Null())
try
May be a calculated Dimension:
If(Len(Trim([DATE])) = 0, 'Null', Null())
Hi Mateusz,
I am still getting rows with today's date.
Hi Nagaian,
Still showing rows with today's date.