Cost Variance vs Average for a FY

Hi all,

I am trying to calculate a cost variance analysis tab in one of my reports. I want to calculate the average of the cost of goods by month and then taking each month in turn and calculating the square of the difference between the cost for the month and the average cost for that product for FY’20.
Could anyone guide me on which measures should I create to get this result. Attached sample excel to show the results I need.
I have the Actual Cost and Total Cost = SUM(Actual Cost) measures created in my dashboard.
Thanks,
NupurCopy of Book3.xlsx (9.3 KB)

Hi @Nupur, we aim to consistently improve the topics being posted on the forum to help you in getting a strong solution faster. While waiting for a response, here are some tips so you can get the most out of the forum and other Enterprise DNA resources.

  • Use the forum search to discover if your query has been asked before by another member.
  • When posting a topic with formula make sure that it is correctly formatted to preformated text .
  • Use the proper category that best describes your topic
  • Provide as much context to a question as possible.
  • Include demo pbix file, images of the entire scenario you are dealing with, screenshot of the data model, details of how you want to visualize a result, and any other supporting links and details.

I also suggest that you check the forum guideline https://forum.enterprisedna.co/t/how-to-use-the-enterprise-dna-support-forum/3951. Not adhering to it may sometimes cause delay in getting an answer.

@Nupur
It would be helpful if you could also share your actual or sample source excel file. We don’t know how your data is organized. I believe the file you have attached is the template of Dashboard.

Hi @MudassirAli,

Apologies. I have attached sample file.
The excel which I attached in my previous post is what I would like to see in the visual in the Power BI Report.

Please let me know if it is still not clear.

Thanks,
NupurSales Report MNF Test File.pbix (2.6 MB)

Hi,
Try to have a look on Sam’s video on “Rolling Averages”, it may help you with your solution.

@Nupur

I created two simple measures to get it working. One for the Average Cost and the second for Sq of the Diff.

Average Cost =
DIVIDE ( [Total Cost], COUNT ( Time_Entity[Month] ) ) 

Sq of the Diff =
VAR Diff = 
[Total Cost] - [Average Cost] 
RETURN 
POWER ( DIFF, 2 )

I created a calculated column for Month Name in DateTable however, I would prefer to create it in Query.

The final result that I got is:

Attaching the PBIX file for your review. Let me know if this works.

Sales Report MNF Test File.pbix (2.6 MB)

Thanks.

Hi @Nupur, did the response provided by the contributors help you solve your query? If not, how far did you get, and what kind of help you need further? If yes, kindly mark the thread as solved. Thanks!

Hi @Nupur, a response on this post has been tagged as “Solution”. If you have a follow question or concern related to this topic, please remove the Solution tag first by clicking the three dots beside Reply and then untick the check box. Also, we’ve recently launched the Enterprise DNA Forum User Experience Survey, please feel free to answer it and give your insights on how we can further improve the Support forum. Thanks!