Forum Discussion
WillemM
Helper I
1 year agoIssue 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.
Chewdata
Responsive Resident
1 year agoHave 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
Helper I
1 year agoHi Chewdata,
Thx. Inserting this step solved the issue. I will look further into this function to see/understand why/how this solved the issue.