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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Solved! Go to Solution.
Hi,
I think this topic is in regards to a similar problem: https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/td-p/547907
Hi @SUNNY_ISLAND ,
Please have a try.
Based on the measure[Total value in SGD].
_contract_ =
var _b = SUMMARIZE('Date','Date'[Report curr],"aaa",'Data'[Total value in SGD])
return
IF(HASONEVALUE('Date'[Report curr]),'Data'[Total value in SGD],SUMX(_b,[aaa]))
Or you can use Other unique columns replace the column 'date'[Report curr].
If I have misunderstood your meaning, please provide a pbix file without privacy information and more details with your desired output.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @SUNNY_ISLAND ,
Please have a try.
Based on the measure[Total value in SGD].
_contract_ =
var _b = SUMMARIZE('Date','Date'[Report curr],"aaa",'Data'[Total value in SGD])
return
IF(HASONEVALUE('Date'[Report curr]),'Data'[Total value in SGD],SUMX(_b,[aaa]))
Or you can use Other unique columns replace the column 'date'[Report curr].
If I have misunderstood your meaning, please provide a pbix file without privacy information and more details with your desired output.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
I think this topic is in regards to a similar problem: https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/td-p/547907
@SUNNY_ISLAND
Please try the following version:
Total value in SGD =
VAR _CURRENCY =
MAX ( Data[Report curr] )
RETURN
SUMX (
data,
CALCULATE (
MAX ( 'Exch rate'[Exch rate] ),
'Exch rate'[Report Curr] = _CURRENCY
) * ( Data[Value] )
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thanks for your suggestion but it is still not working. The end results remain the same. Would appreciate alternative suggestions. Much thanks
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.
User | Count |
---|---|
9 | |
8 | |
6 | |
4 | |
3 |