Can someone help me fix my formula;
Goal output
- Task Actual Duration is greater than Task Duration Days then "Longer"
- Task Actual Duration is less than Task Duration Days then "Shorter"
- Task Actual Duration = Task Duration Days then "Expected"
- If Task Actual Duration is blank then " "
Right now my formula doesn't account for the equal to component and doesn't account for if the "Task Actual Duration" is blank.
=IF([Task Actual Duration]@row > [Task Duration Days]@row, "Longer", "Shorter")
Thanks for helping me fix formula, my guess is it needs some nesting which i am not good at.