Nested if not working
Hello,
I have some simple nested if as following:
=IF(ISBBLANK([Ticket Date]8), [Ticket Date] + 38,IF([Detection Date]8 < DATE(2024, 4, 30), DATE(2024, 4, 30) + 38, [Detection Date]8 + 38))
for some reason, the first [Detection Date]8 always get unparseable error, but 2nd [Detection Date]8 has NO issue, I copied the 2nd one to replace the first one, still same and can not get result. I m not sure what's problem here? thanks for anyone's help!
Best Answer
-
Your last [Ticket Date] doesn't have a row reference.
Answers
-
Try removing one of the Bs from the ISBLANK function.
-
My copy mistake, the condition is as following:
IF(ISBLANK([Ticket Date]8),IF([Detection Date]8 < DATE(2024, 4,30),DATE(2024, 4, 30) + 38, [Detection Date]8 + 38), [Ticket Date] + 38)
-
Your last [Ticket Date] doesn't have a row reference.
-
thank you very much Paul
Help Article Resources
Categories
Check out the Formula Handbook template!