Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

Handling huge amounts of data

Dear Community,   I would like to know how you would load the following data into PowerQuery and finally into PowerBI. I am provided with eight different exports that cannot be changed. The column ...
  • lbendlin's avatar
    2 years ago

    I ran into something similar recently. The lessons I learned were

    - don't try to be cute and use List.Generate or something like that.  Create eight (yes, eight) separate Power Query queries, one for each export. This will yield maximum possible performance (don't forget to set parallelism to 8 or more).

    - Use Binary.Buffer when fetching the files from SharePoint. That will tell the SharePoint server that you are impatient and not willing to wait for the chunking.

    - Do as few transforms as possible. Maybe change column types, but that's it.

    - load all queries into Power BI and do a UNION calculated table there.