Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Calculate variance

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

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Is this answered now ? I think you marked the wrong post as a helpful answer (i.e. one of your questions)

Jonathan

View solution in original post

6 Replies
Anonymous
Not applicable
Author

if(Sum([Act Value])>(Sum([Est Value])*0.9),Sum([Est Value])/Sum([Act Value]))

Not applicable
Author

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....

Anonymous
Not applicable
Author

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

Not applicable
Author

thanks i think it shud work....

Anonymous
Not applicable
Author

Is this answered now ? I think you marked the wrong post as a helpful answer (i.e. one of your questions)

Jonathan

Not applicable
Author

thanks yes it worked for me....