Forum Discussion
Calculate column subtotal for ratio
Hi! I am new to DAX and Power BI.
Please, would you please tell me how it should be done?
I am stuck with a problem.
I have a measure which should calculate sales forecast based on already given days in a month and total number of days. Sth like this
Forecast = Sales / Days_of_sales * number_of_days_in_the_month
So I have the following measures and formulas:
Sales is Sum over a sales column
shows number of days in a month in consideration
shows number of days from the beginning of the month until including yesterday.
Thanks in advance
You can add a varible _Result = SUMX(VALUES('Table'[Month]), Forecast) and return it to see whether it works.
4 Replies
- BI-LeoFrequent Visitor
Hi timur-1993 , this is due to Content Transition in the DAX, and the total won't simply add all the cell together.
For your scenario, the total calculates the result amonng whole sum sales in Nov and Dec then divide whole days in Nov and Dec.
- BI-LeoFrequent Visitor
You can add a varible _Result = SUMX(VALUES('Table'[Month]), Forecast) and return it to see whether it works.
- timur-1993New Member
Hey, BI-Leo!
This worked just fine, thanks a lot!
Could you give advice on what to read to better understand how to manipulate totals?
- BI-LeoFrequent Visitor
Hi timur-1993 ,
I think the following article will be helpful for you