Forum Discussion
Split multiple columns into rows at once
- Anonymous5 years ago
Based on the proposed example, this script should do what is required.
An implicit assumption, for example, is that indexes are unique.
If something does not work as desired, explain well what by loading the tables (so that they can be copied, not as images) on which it does not work and indicating exactly the error and where it occurs.
Based on the proposed example, this script should do what is required.
An implicit assumption, for example, is that indexes are unique.
If something does not work as desired, explain well what by loading the tables (so that they can be copied, not as images) on which it does not work and indicating exactly the error and where it occurs.
This is amazing! it worked like a charm.
I had to replace nulls first to get it working
= Table.TransformColumns(Source,{},(x) => Replacer.ReplaceValue(x,null,""))
but overall it worked out very well
Thank you very much