Forum Discussion
WillemM
1 year agoHelper I
Issue merging and expanding afterwards
Hello, I'm experiencing an unexpected result in my Powerquery steps. Hope someone can help me understand what is happening or advice on what i'm doing wrong. The join-step gives exactly the right a...
- 1 year ago
Have you tried to do a Table.Buffer() before the join?
Buffer = Table.Buffer(#'Changed Type1')
You have to change the input table in merge step to the buffer aswell.
WillemM
1 year agoHelper I
Hi,
Tried, but doesn't change the output.
Chewdata
1 year agoResponsive Resident
Have you tried to do a Table.Buffer() before the join?
Buffer = Table.Buffer(#'Changed Type1')
You have to change the input table in merge step to the buffer aswell.
- WillemM1 year agoHelper I
Hi Chewdata,
Thx. Inserting this step solved the issue. I will look further into this function to see/understand why/how this solved the issue.