Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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 that happens, I want to retain the value mentioned in 'Amount' column in the 'New Amount' column. Please find an example below:
| Amount | Fx rate | New Amount |
| 100 | 1.2 | 83.3 |
| 200 | 1.3 | 153.8 |
| 150 | null | 150.0 |
Also, I want to do this operation in my original table and not use a measure.
Request for any help! Thanks!
Solved! Go to Solution.
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
Proud to be a Super 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
Proud to be a Super User!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 43 | |
| 35 | |
| 33 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 64 | |
| 59 | |
| 31 | |
| 27 | |
| 25 |