Aug 10, 2021 04:24 AM
Hey everyone,
Sorry if this has been asked before, I couldn’t find anything.
I am still a beginner.
My Problem is the following:
IF({Laufzeit (Monate)}= BLANK(),"", DATEADD(Vertragsbeginn,{Laufzeit (Monate)},“Month”))
It works, but the result it is no longer shown as a date. I guess because it could either be a date or a text, it doesn’t recognize it.
So what I want is to have an empty cell in case “Laufzeit (Monate)” ist empty and the calculated date as a date in case “Laufzeit (Monate)” is filled.
Could anyone help?
Solved! Go to Solution.
Aug 10, 2021 05:33 AM
Hi Carmen. All you need to do is to flip your logic in the IF.
IF({Laufzeit (Monate)}, DATEADD(Vertragsbeginn,{Laufzeit (Monate)},"Month"))
Give that a try!
Aug 10, 2021 05:33 AM
Hi Carmen. All you need to do is to flip your logic in the IF.
IF({Laufzeit (Monate)}, DATEADD(Vertragsbeginn,{Laufzeit (Monate)},"Month"))
Give that a try!
Aug 17, 2021 12:09 AM
It works! Thank you so much!