Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
If a value is blank or null return blank...
I have a date 12/31/9999 12:00:00 AM and I would like to say if this date exist return blank for the rows...I cannot get this to work. Help?
Chart Properties>Dimensions>Enable Conditional
=IF(termDt= '12/31/9999 12:00:00 AM' ,null(),termDt) Or
=IF(termDt= '12/31/9999 12:00:00 AM' ,'',termDt)
You should probably do this in the script, e.g
If(termDt= '12/31/9999 12:00:00 AM' ,null(),termDt) as termDt
HIC
You should probably do this in the script, e.g
If(termDt= '12/31/9999 12:00:00 AM' ,null(),termDt) as termDt
HIC
i think the problem with date format, can u try some thing like
=IF(termDt= date#(('12/31/9999 12:00:00 AM','the format of required datetime stamp') ,null(),termDt)
That worked, is there a way to remove the dash - from the data?
termDt
-
-
-
-
-
-
-
Hi,
First condition is correct in dimensions tab.
=If(termDt= '12/31/9999 12:00:00 AM' ,null(),termDt)
select your dimension under the dimension tab and click on suppress when value is null
Remove the null values----> Presentation tab remove Null Symbol in box. Thank you all for the help