Hi All,
Appreciate someones help on the following formula.
I have 2 columns - 'Estimated Hours' and 'Realized Hours' - I have created a third column 'Task Variance' where I want a percentage value of the difference between Realized Hours (actual work) versus 'Estimated Hours' (planned work time)
What I want to be able to see is that if 'Realized Hours' is less than 'Estimated' it should give me a negative percentage (as in % less than Realized) and if the tasked hours are over, it should show as a positive percentage (as in % greater than Realized).
I can get it to function based on a simple:
=IFERROR(([Est. Hours]@row - [Realized Hours]@row ) / [Est. Hours]@row , "")
But when my Realized are greater than Estimated it gives me a negative percentage.