Forum Discussion
SJHALANI
3 years agoHelper I
Creating New column using condition
Hi, I have a table which has 2 columns: (i) Amount (ii) Fx rate I want to create a new column 'New Amount' which is (Amount/Fx rate). However, the Fx rate column can be 'null' at times. When ...
- 3 years ago
Hi SJHALANI
Do you want the column created in PQ or in DAX?
Power Query
= if [Fx rate] is null then [Amount] else [Amount]/[Fx rate]DAX
Column = IF([Fx rate] > 0, DIVIDE([Amount],[Fx rate]), [Amount])Regards
Phil
PhilipTreacy
3 years agoSuper User
Hi SJHALANI
Do you want the column created in PQ or in DAX?
Power Query
= if [Fx rate] is null then [Amount] else [Amount]/[Fx rate]
DAX
Column = IF([Fx rate] > 0, DIVIDE([Amount],[Fx rate]), [Amount])
Regards
Phil
SJHALANI
3 years agoHelper I
Thank you PhilipTreacy, this works.
I wanted it in Power Query,