Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need to calculate variance of inprogress task where actual value has crossed 90% of estimate value. i've attached the sample file
fields to show:
taskname, percentage complted, actual value, estimated value , calculated variance
Is this answered now ? I think you marked the wrong post as a helpful answer (i.e. one of your questions)
Jonathan
if(Sum([Act Value])>(Sum([Est Value])*0.9),Sum([Est Value])/Sum([Act Value]))
Thanks for replying.... this is calculating variance for all all records...I want to see only those records in which actual value has crossed 90% of estimate value.... can i get the variance only for those records....
The 'if(Sum([Act Value])>(Sum([Est Value])*0.9)...' test is intended to make that restriction for you, with nothing generatd if that condition is not meet. I may be missing the point though.
Jonathan
thanks i think it shud work....
Is this answered now ? I think you marked the wrong post as a helpful answer (i.e. one of your questions)
Jonathan
thanks yes it worked for me....