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 have two tables, one has week number and initial forecast, second table has week number and actual sales, I want combine with a measure "Actual Forecast" where measure take "actual sale" for past weeks and "first forecast" for future weeks I do the next measure
But I have an error in Total of Actual Forecast, should be 520.040.000
How can I fix it?
Thanxs a Lot
Solved! Go to Solution.
Hi,
I am not sure how your datamodel looks like, but please try to write one more measure something like below and put it into your table visualization.
Actual Forecast totalfix: =
SUMX ( DISTINCT ( 'CalendarTable'[WEEK] ), [ACTUAL FORECAST] )
Hi,
I am not sure how your datamodel looks like, but please try to write one more measure something like below and put it into your table visualization.
Actual Forecast totalfix: =
SUMX ( DISTINCT ( 'CalendarTable'[WEEK] ), [ACTUAL FORECAST] )