i have this formula and want to add one more critiria at the beginning. this one works good.
IF([Fint Cross]@row = "NA", IF([FTST Dock Date]@row - 8 < TODAY(), "Release Job", ""), IF([Fint Cross]@row - 8 < TODAY(), IF([Main Frame %]@row > 0.5, IF([CH % comp]@row > 0.5, "Release Job", ""), ""), ""))
Tried this by itself and it works, good.
=IF([FTST release date]@row > DATE(2020, 1, 1), "T", "F")
when i combine them, i get the Unparseable. it the statement is false, i was put "heelppp" in the cell, will change after i get it to work.
=IF([FTST release date]@row > DATE(2020, 1, 1), ([Fint Cross]@row = "NA", IF([FTST Dock Date]@row - 8 < TODAY(), "Release Job", ""), IF([Fint Cross]@row - 8 < TODAY(), IF([Main Frame %]@row > 0.5, IF([CH % comp]@row > 0.5, "Release Job", ""), ""), "")), "heelppp")
can anyone help in in desiding what i am doing wrong.