The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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] )