Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I have 2 table which I cannot merge due to granularity:
This is the main:
And this is the other:
So wanted to merge them on country and then get category in the main table.
Looked liked it worked but then I noticed my lines got doubeld.
Most likely because the main table has Business and therefore the country is in for every business.
I could add business to the lookup table but then I would always be doing double maintenance if new countries were in scope.
Was thinking of not merging but just do a lookup from the main table into the lookup tabel and then get category from the lookup table in my custom column in the main table.
What would the M-code be for something (simple) like this?
Solved! Go to Solution.
Ok I was able to find a solution found in a power query video explaining this.
Would think it would be easier, not that it is hard but it looks more like a workaround.
= #"*V* Category"[Category]{List.PositionOf(#"*V* Category"[Country],[Country])}
Looking first up where the poistion is of the category
x = List.PositionOf(#"*V* Category"[Country],[Country])
and than use that to get the actual category...
- #"*V* Category"[Category]{ x }
Maybe there are better and easier solutions for when merge doesn't work but I will go with this for now 🙂
Ok I was able to find a solution found in a power query video explaining this.
Would think it would be easier, not that it is hard but it looks more like a workaround.
= #"*V* Category"[Category]{List.PositionOf(#"*V* Category"[Country],[Country])}
Looking first up where the poistion is of the category
x = List.PositionOf(#"*V* Category"[Country],[Country])
and than use that to get the actual category...
- #"*V* Category"[Category]{ x }
Maybe there are better and easier solutions for when merge doesn't work but I will go with this for now 🙂
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 29 | |
| 27 | |
| 25 | |
| 25 | |
| 18 |
| User | Count |
|---|---|
| 54 | |
| 49 | |
| 43 | |
| 36 | |
| 32 |