Forum Discussion
LisaB
7 years agoHelper 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_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
- Anonymous7 years ago
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] ) )