Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI ,
I want display when there is no date , for which iam trying to write the below expression ...
if (Date=null,0)
to which it is giving error in expression , Can someone please suggest me how to write this
Thanks in Advance
May be this, Because you are talking about Text object
If(IsNull(Date),0, Concat(Date,','))
Try like:
if (IsNull(Date),0)
Or,
If( Len(trim(Date))=0, 0)
Where are you trying to do this? Script or front end? Dimension or expression (if its in front end)?
Front end it is an expression within the text object
Have you tried tresesco's suggestions? May be doing that will resolve your issues
May be this, Because you are talking about Text object
If(IsNull(Date),0, Concat(Date,','))