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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors