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