Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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.