Forum Discussion
Lookup in Power Query Editor
- 1 year ago
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 ๐