Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want to show Dates when the below condition satisfy
when DateA is blank the expression should show DateB value other wise it should show DateA value. I have used below seems not working.
=Date(If((DateA='',DateB,DateA),'DD/MM/YYYY')
Please can anyone suggest me how to change this.
Thanks.
try tis way,
=Date#(If(isnull(DateA),DateB,DateA),'DD/MM/YYYY')
Hi Amelia,
Depends on your field whether Blank(empty) or Null.
see which apply to your case:
Len(DateA) = 0 or Isnull(DateA)
Thanks. working.
ur wc