Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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:
Thanks in advance
Solved! Go to Solution.
You can add a varible _Result = SUMX(VALUES('Table'[Month]), Forecast) and return it to see whether it works.
You can add a varible _Result = SUMX(VALUES('Table'[Month]), Forecast) and return it to see whether it works.
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?
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.