excellent thanks for this advanced series....very valuable content
@AAAExcel2 жыл бұрын
My pleasure 🙏🙏
@alexrosen8762 Жыл бұрын
The best solution to this situation I have seen this far 👌
@AAAExcel Жыл бұрын
Thank you 🙏
@jawadahmadehssan62512 жыл бұрын
Thanks Amar for another great transformational tricks.
@AAAExcel2 жыл бұрын
My pleasure
@aniljaggarwal602 жыл бұрын
👌 Excellent 👌 thanks 👌
@AAAExcel2 жыл бұрын
Most welcome 🙏
@MrFredy652 жыл бұрын
Excellent.....Thanks....I hope your videos....
@AAAExcel2 жыл бұрын
Most welcome dear, I will do my best
@billgillaspey9036 Жыл бұрын
Q: Why does Table.Combine( Source ) not require { } (perhaps { Source } ); at other times when a list is required, the {}'s are required...
@AAAExcel Жыл бұрын
in video you will notice that source step contains nothing but a list, that's why when you pass it inside the function Table.Combine, you are not required to add the curly brackets. This will also be the case if you pass a column to a function requiring a list. Normally you need the {} when you are passing hardcoded lists such as {1,2,3}
@SeyPras.6 ай бұрын
Thanks for the tutorial Sir.. The code had so little steps. Was thinking you could also wrap the Table.combine within the source step as well
@Mohamed-km9jd2 жыл бұрын
This is very usefull and I want to know If i am getting data from folder and the folder has multiple pdf files with different number of table in each pdf. What should u do??
@AAAExcel2 жыл бұрын
Try to transform the first file first, change the query to a custom function then apply the custom function to the rest of the folder
@shoaibrehman99882 жыл бұрын
Wise technique 👌. A question if any 1 or few tables columns headers are not in sequence, could be Date , category, Qty or Table 2 Supplier, Qty. Date . How can we handle this situation. If any thoughts pls share with us.
@AAAExcel2 жыл бұрын
Thank you .. sequence never impact the append/combine process
@sazdean7233 Жыл бұрын
This is great thanks. Would you like to try to solve this challenge which I'm encountering, If we have a table like this: Person, Car A, K A, L B, M B, N B, O C, P And we want to turn it into this table: A, B, C K, M, P L, N, null null, O, null How do you think we can do it in Power Query, knowing that more Persons and Cars can be added in the future. so the query has to be dynamic. I find this incredibly challenging Thanks
@AAAExcel Жыл бұрын
Please try the below simple code let Source = Excel.CurrentWorkbook(){[Name=“Table1”]}[Content], Grouped = Table.Group(Source, {“Person”},{{“Car”, each _[Car]}}), Result = Table.FromColumns(Grouped[Car], Grouped[Person]) in Result