hi,
this is an IF formula with 2 conditions to be checked
I created a field to receive the result : CloseDate
absagedatum and bewerbungseingang are Date fields. Lets call them Date1 and Date2
vertrag is a field containing 3 values (1, 2 or 3) or null values.
it says:
if Date1 is null and vertrag is 1 or 2
then add 2 months to Date2
or CloseDate remains empty
If Isnull([absagedatum] AND [vertrag] ='1' OR '2')
then DateTimeAdd([bewerbungseingang],2,"months")
else ''
endif
Can't find out where is the syntax error.
Thank you
Paola