Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have a table looking like below screenshot.
I am not that familiar with Power BI DAX syntax, May I get some help to achieve below outcome:
A new colume to have:
if column 1 equals to "I"
and if Table3.Column6 not null
then use Table3.Column6 value to replace Column6 value
else remain Column6 value
Solved! Go to Solution.
Hi @MichelleQLi ,
For simple conditional columns you can use the Add Conditional Column feature in the Query Editor. By the way, this editor uses M as the language. DAX is used once you've loaded your data into the model.
https://turbofuture.com/computers/A-Comparison-Between-M-Language-and-DAX-in-Power-BI
Hi @MichelleQLi ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a calculated column.
Column = IF('Table'[Column1]=="I" && 'Table'[Table3.Column6]<>BLANK(),'Table'[Table3.Column6],'Table'[Column6])
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @MichelleQLi ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a calculated column.
Column = IF('Table'[Column1]=="I" && 'Table'[Table3.Column6]<>BLANK(),'Table'[Table3.Column6],'Table'[Column6])
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @MichelleQLi ,
For simple conditional columns you can use the Add Conditional Column feature in the Query Editor. By the way, this editor uses M as the language. DAX is used once you've loaded your data into the model.
https://turbofuture.com/computers/A-Comparison-Between-M-Language-and-DAX-in-Power-BI
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 45 | |
| 38 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 86 | |
| 70 | |
| 39 | |
| 29 | |
| 28 |