Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
lcasey
Post Prodigy
Post Prodigy

Help with formula

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]
)

1 REPLY 1
Anonymous
Not applicable

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

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.