Forum Discussion
Abdel735
Sep 06, 2022Copper Contributor
Help
Can someone help me with this fct =IF(ISBLANK(I2);"");IF((I2>TODAY());"To anticipate";"Gate finished");IF((I2<EDATE(TODAY();1));"Priority") , i can t find the error , i get Value! error
- Sep 06, 2022
Some brackets are in the wrong places. Perhaps this way:
=IF(ISBLANK(I2);"";IF(I2>TODAY();"To anticipate";IF(I2<EDATE(TODAY();1);"Priority";"Gate finished")))
Riny_van_Eekelen
Sep 06, 2022Platinum Contributor
Some brackets are in the wrong places. Perhaps this way:
=IF(ISBLANK(I2);"";IF(I2>TODAY();"To anticipate";IF(I2<EDATE(TODAY();1);"Priority";"Gate finished")))
Abdel735
Sep 06, 2022Copper Contributor
Thank you! 😉