Forum Discussion
Target vs Actual Values and variance
Hi Kevin
That looks like it would be a sensible output. Please can you share your pbix. file or calculations?
- First create a date table with date and month at least.
- Create a contract Table with unique values
- Then use this relation between tables :
- Create your table using contract from contract table and month from date table
- % vs target = DIVIDE(SUM(Data[Value Sold]),SUM(Targets[Target]),0)
- Variance = CALCULATE(SUM(Data[Value Sold])-SUM(Targets[Target]))
- Aimeeclaird5 years ago
Helper IV
Hi, thanks for your response and suggestion.
I'm not sure that this solution will work for us though. How are you looking up the target month? As the target changes for each month?
- Anonymous5 years agoNot applicable
Hi,
I do not get it. THe calculation I did takes in consideration the target changing each month.. Could you be more precise please?