Forum Discussion

rbech's avatar
rbech
Regular Visitor
2 years ago
Solved

Multiple queries transformations VS one big query transformation

Hi Guys ! I have to collect, transform and visualise 14 folders with 1 xls sheet uploaded by days. Each sheet has approximatively 86K rows (timeseries "per second"). Unfortunately the columns are ...
  • AmiraBedh's avatar
    2 years ago

    For your scenario in Power Query, in my opinion the most efficient approach would likely be to combine the tables first and then unpivot the combined table since you want to reduce redundant transformations across multiple tables.

    You can start by combining tables by folders using Table.Combine, performing initial transformations such as removing unnecessary columns on these combined tables.

    Once the data is combined and cleaned, use Table.Unpivot to transform it into the desired format.