Compare a Date and a Dateformula type field

DarkHorseDarkHorse Member Posts: 389
Hello, I'd like to know how to compare a Date and a DateFormula type field. I do the following;

IF ......
AND ("Date confirm">0D) AND FORMAT("Lead Time Calculation">0D) THEN...

"Date confirm" is Date type and "Lead Time Calculation" is a Dateformula type. In Lead time I want to say that if is different from empy. How I do it?.
Thanks in advance.

Comments

  • AlbertvhAlbertvh Member Posts: 516
    Hi

    do this

    AND ("Date confirm">0D) AND (FORMAT("Lead Time Calculation") <> '') THEN

    Hope this helps

    Albert
  • DarkHorseDarkHorse Member Posts: 389
    Yes!!, it works. Thank you very much for your help.
  • AlbertvhAlbertvh Member Posts: 516
    Glad it helped.
Sign In or Register to comment.