Hi,
I'm having trouble with the task in PowerQuery. I am trying to merge several Excel files. Each file has more or less the same layout of columns. What I mean exactly is:
Month; A|no; B|no; C|no; D|no
Where A, B, C, D is a constant part of header in a files. However the other part after character "|" is a number. This number is different for each file. For example in 1st file:
Month; A|2222; B|1111; C|3333; D|4444
10-2001;100;200;300;400
in 2nd file:
Month; A|2223; B|1112; C|3334; D|4445
10-2001;10;20;30;40
I am trying to get a query load data into Excel from folder (many files) transformed to this layout:
Month; Name; Number; Value
So the result would be:
Month; Name; Number; Value
10-2001;A;2222;100
10-2001;B;1111;200
10-2001;C;3333;300
10-2001;D;4444;400
10-2001;A;2223;10
10-2001;B;1112;20
10-2001;C;3334;30
10-2001;D;4445;40
Any help would be much appreciated!
I'm having trouble with the task in PowerQuery. I am trying to merge several Excel files. Each file has more or less the same layout of columns. What I mean exactly is:
Month; A|no; B|no; C|no; D|no
Where A, B, C, D is a constant part of header in a files. However the other part after character "|" is a number. This number is different for each file. For example in 1st file:
Month; A|2222; B|1111; C|3333; D|4444
10-2001;100;200;300;400
in 2nd file:
Month; A|2223; B|1112; C|3334; D|4445
10-2001;10;20;30;40
I am trying to get a query load data into Excel from folder (many files) transformed to this layout:
Month; Name; Number; Value
So the result would be:
Month; Name; Number; Value
10-2001;A;2222;100
10-2001;B;1111;200
10-2001;C;3333;300
10-2001;D;4444;400
10-2001;A;2223;10
10-2001;B;1112;20
10-2001;C;3334;30
10-2001;D;4445;40
Any help would be much appreciated!