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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
Does anyone know how I would substitute a Measure called "Currency" rather than use a column in the Transactions Table called CCURNCYID
Revalued Balance (USD) =
SUMX (
ADDCOLUMNS (
SUMMARIZE (
Transactions,
Transactions[CCURNCYID]
),
"Revalued Partial", CALCULATE ( SUM ( Transactions[BalanceCalc] ) ) * [Exchange Rate]
),
[Revalued Partial]
)
Hi @lcasey,
You can try to use below formula if it works on your side:
Revalued Balance (USD) =
SUMX (
ADDCOLUMNS (
SELECTCOLUMNS(
Transactions,
"Currency",
[Currency] //your meaaure
),
"Revalued Partial", CALCULATE ( SUM ( Transactions[BalanceCalc] ) ) * [Exchange Rate]
),
[Revalued Partial]
)
If above is not help, can you share some sample data?
Regards,
Xiaoxin Sheng
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!