Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Guys!
I want to make "Forecast to Actual % daily" total show total of 103.69(all combine) instead of 21.11
The calculation for "Forecast to Actual % daily" is Call Received/Forecast
I am using measure: Forecast to Actual % daily = divide(sum('Forecast%'[Call Received]),SUM('Forecast%'[Forecast]))
What changes I need to make on my measure so I can get the correct total for my data??
Thanks in advance!
Solved! Go to Solution.
Hi @njxfoster ,
I create a table as you mentioned.
Then I use your DAX code to create a Measure named Forecast to Actual % daily.
Forecast to Actual % daily =
DIVIDE ( SUM ( 'Forecast%'[Call Received] ), SUM ( 'Forecast%'[Forecast] ) )
I create a new measure and finally I get what you want.
Measure =
VAR _Div =
DIVIDE ( SUM ( 'Forecast%'[Call Received] ), SUM ( 'Forecast%'[Forecast] ) )
RETURN
IF (
ISINSCOPE ( 'Forecast%'[SERVICE_NAME] ),
_Div,
SUMX ( 'Forecast%', [Forecast to Actual % daily] )
)
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @njxfoster ,
I create a table as you mentioned.
Then I use your DAX code to create a Measure named Forecast to Actual % daily.
Forecast to Actual % daily =
DIVIDE ( SUM ( 'Forecast%'[Call Received] ), SUM ( 'Forecast%'[Forecast] ) )
I create a new measure and finally I get what you want.
Measure =
VAR _Div =
DIVIDE ( SUM ( 'Forecast%'[Call Received] ), SUM ( 'Forecast%'[Forecast] ) )
RETURN
IF (
ISINSCOPE ( 'Forecast%'[SERVICE_NAME] ),
_Div,
SUMX ( 'Forecast%', [Forecast to Actual % daily] )
)
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 14 | |
| 8 | |
| 8 | |
| 8 |