Hello @AliB,
Thank You for posting your query onto the Forum.
Here’s the solution and the measures provided for the reference to achieve the correct totals -
1). Measure For Total Value - Totals -
Total Opp Value - Totals =
SUMX(
SUMMARIZE(
Opportunity ,
Opportunity[OppID] ,
"@Totals" ,
[Total Opp Value] ) ,
[@Totals]
)
2). Measure For Total Open Opp Value - Totals -
Total Open Opp Value - Totals =
SUMX(
SUMMARIZE(
Opportunity ,
Opportunity[OppID] ,
"@Totals" ,
[Total Open Opp Value] ) ,
[@Totals]
)
3). Opps per Group using Total Opp Value - Totals -
Opps per Group using Total Opp Value - Totals =
SUMX(
SUMMARIZE(
account ,
account[AccountID] ,
"@Totals" ,
[Opps per Group using Total Opp Value] ) ,
[@Totals]
)
4). Measure for Aged Opp Value - Totals -
Aged Opp Value - Totals =
SUMX(
SUMMARIZE(
account ,
account[AccountID] ,
"@Totals" ,
[Aged Opp Value] ) ,
[@Totals]
)
Lastly, here’s the screenshot of the results that you were trying to achieve.
I’m also attaching the working of the PBIX file for the reference as well.
Hoping you find this useful and meets your requirements that you’ve been looking for.
Important Note: This technique is already showcased in the post which @Greg had provided earlier. You can go through that post again for the reference.
Thanks and Warm Regards,
Harsh
PB Test Model - Harsh.pbix (150.7 KB)