The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have a table similar to the one shown below:
Col A | Col B | Condtion X |
A123 | A322 | 1 |
A322 | A300 | 0 |
A232 | A123 | 1 |
What I want to do is filter on Condition X where value is 0 and then append the corresponding Col B values to Col A for the same table. The result will look like below:
Col A | Col B | Condtion X |
A123 | A322 | 1 |
A322 | A300 | 0 |
A232 | A123 | 1 |
A300 | - | - |
Basically, I am adding to Col A the values that are in Col B but not already in Col A.
I want to do this in Power Query (M code) NOT Dax
Hope that makes some sense.
Thanks in advance
Solved! Go to Solution.
@zb134 There may be a more streamlined way to do this without duplicating the table, but off the top of my head I used the following steps:
@zb134 There may be a more streamlined way to do this without duplicating the table, but off the top of my head I used the following steps: