Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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_No | Currency Code | Currency Factor | Amount |
| 101010 | 0 | 10 000,00 | |
| 101011 | EUR | 0,09779031 | 1 000,00 |
| 101012 | EUR | 0,09779031 | 2 000,00 |
Thanks!
Lisa
Solved! Go to Solution.
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] )
)
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.
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!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 50 | |
| 43 |