Good afternoon community,
I have a simple formula that works successfully:
"=([Actual Cost]@row - [Estimate Cost]@row) / [Estimate Cost]@row)"
I was wondering how I can implement this formula within an IF formula? For example, I would like this formula to be ran if Project Category is "A", otherwise return "N/A". So the formula I wrote was:
"=IF([Project Category]@row = "A", ([Actual Cost]@row - [Estimate Cost]@row) / [Estimate Cost]@row), "N/A"))"
The IF formula works fine without the formula ("=IF([Project Category]@row = "A", "True", "N/A"))", but when I combine it, it's #UNPARSEABLE
Any help is appreciated, thank you in advance.