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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
LisaB
Helper III
Helper III

Convert currency amount based on IF statement

Hi,

 

I need to calculate amount into local currency. All entries in local currency (LCY) have blank currency code and currency factor = 0. Example table below.

 

I need help with writing a DAX formula giving me the amount (LCY); if currency factor is = 0, then it should show the amount in the column named amount, if it differs from 0 it should show amount * (1/currency factor).

 

Invoice_NoCurrency CodeCurrency FactorAmount
101010 010 000,00
101011EUR0,097790311 000,00
101012EUR0,097790312 000,00

 

Thanks!

 

Lisa

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@LisaB,

You can create a calculated column like below: 

Local Currency =
IF (
    'Table Name'[Currency Factor] = 0,
    'Table Name'[Amount],
    'Table Name'[Amount] * ( 1 / 'Table Name'[Currency Factor] )
)

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@LisaB,

You can create a calculated column like below: 

Local Currency =
IF (
    'Table Name'[Currency Factor] = 0,
    'Table Name'[Amount],
    'Table Name'[Amount] * ( 1 / 'Table Name'[Currency Factor] )
)

Worked like a charm! Thanks.

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.