Forum Discussion
Aimeeclaird
Helper IV
5 years agoTarget vs Actual Values and variance
Hi, I have a list of targets per month. I want to show the actual total vs the target table, and also calculate the variance. Here is an example of my data. https://data2actionltd-my.sharepoint.c...
Anonymous
5 years agoNot applicable
- 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]))
Aimeeclaird
Helper IV
5 years agoHi, 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?