Fastest Way To Read Large Excel Table In Power Automate

Fastest Way To Read Large Excel Table In Power Automate

With this method I was able to get 50,000 rows from an Excel file in 7 seconds. By comparison, the Excel action built in Excel action is quite slow. It took over 5 minutes to get the same amount of rows. This is the quickest way to get all of the rows in an Excel table and it can handle up to 100,000 rows. You must learn this method if you want to build high-performance flows!

Table of Contents
• Introduction: The Car Sales ReportCreate An Excel Table With 50,000 RowsGet The Drive ID & Item ID From The Excel FileConfigure A Connection To Microsoft GraphTransform The Response Into A Flattened Array Of Excel RowsParse The JSON Array Into A Set Of Dynamic Values




Introduction: The Car Sales Report

Each month car manufacturing company uses an automation to read the rows from a large Excel table and write them into an analytics database.



The Power Automate flow uses the HTTP With Azure AD – Invoke An HTTP Request action combined with the Microsoft Graph API to GET all rows to from an Excel table instead of the Excel connector.



Using the HTTP With Azure AD Connector the automation is able to fetch 50,000 rows in only 7 seconds. To contrast, the Excel connector built into Power Automate takes over 5 minutes to do the same actions.




Create An Excel Table With 50,000 Rows

Open SharePoint and create a new Excel file named Car Sales Report.xlsx inside of a document library.



Then insert a new table object called tblCarSales into Sheet1. Include the following table columns:

  • Year
  • Make
  • Model
  • Cost



Use this sample data to populate the table.

YearMakeModelCost
2000HondaAccord15,242.74
1998OldsmobileAurora14,691.91
1984MaseratiQuattroporte7,568.83
2011ChevroletMalibu22,711.39
2006Mercedes-BenzG-Class13,949.48
1985FordLaser34,159.31
2009KiaSpectra29,023.15
1996DodgeRam Van 350024,883
1985BuickCentury33,778.10
2009Mercedes-BenzS-Class27,039.57



There are only 10 lines in the sample data but it can be copied into the spreadsheet as many times as desired to simulate a large data set. The example we are doing here together has 50,000 rows.




Get The Drive ID & Item ID From The Excel File

We need to get the Excel workbook’s Drive ID and Item ID to use in the Microsoft Graph API call. To find these IDs return to Power Automate and insert the Excel for Business (Online) – List Rows Present In A Table action into the flow. Choose the Excel table named tblCarSales from the Car Sales Report.xlsx spreadsheet.

Set the Top Count field to 1. We don’t need to get the rows from this spreadsheet We only want to get the information about where the table is located from the action.



After the flow is run the Drive ID (“drive”) and Item ID (“file”) can be found in the action’s inputs.



Next, create a set of two Data Operations – Compose actions named Compose: Drive ID and Compose: Item ID.



Get the Drive ID using this Power Automate expression.

actions('List_rows_present_in_a_table:_Car_Sales_Report')?['inputs']?['parameters']?['drive']



And get the Item ID using this Power Automate expression.

actions('List_rows_present_in_a_table:_Car_Sales_Report')?['inputs']?['parameters']?['file']




Configure A Connection To Microsoft Graph

The Microsoft Graph API provides access to Microsoft 365 data and services, such as allowing developers to programmatically interact with Excel files stored in SharePoint. We can access it using the HTTP With Azure AD connector. Add the HTTP With Azure AD – Invoke An HTTP Request action to the flow.



Use this URL for both the Base Resource URL and Azure AD Resource URI fields when configuring the connection.

https//graph.microsoft.com



Read The Rows From An Excel Table Using HTTP With Azure AD

Now that we are connected to the MS Graph we can use the Create Table Row endpoint for Excel workbooks endpoint to get all of the rows from a table. Select the GET HTTP method to indicate a resource is being read.



Use this code in the Url of the request.

v1.0/drives/@{outputs('Compose:_Drive_ID')}/items/@{outputs('Compose:_Item_ID')}/workbook/worksheets/Sheet1/tables/tblCarSales/rows




Transform The Response Into A Flattened Array Of Excel Rows

The Graph API call responds with a JSON containing all of the Excel table rows. But we must do some additional transformations of the JSON to get the data into a useable state. Add a Data Operations – Parse JSON action to the flow.



Then use this code in the Content property of the action.

body('Invoke_an_HTTP_request:_Read_Rows_In_Table')?['value']



Run a test of the flow to see what the JSON response looks like from the Invoke an HTTP Request – Read Rows In Table action. Highlight and copy the array in the body property of the JSON. Then use the Generate from sample feature and paste the array into the input box. The JSON schema should appear exactly as in the image above.



Next, add a Data Operations – Select action to the flow and switch the Map property to text mode.



Then use this code in the Map property.

first(item()?['values'])



Finally, insert another Data Operations – Select action and use it to define column names and create an array of records.



Year column value expression:

item()[0]



Make column value expression:

item()[1]



Model column value expression:

item()[2]



Cost column value expression:

item()[3]




Parse The JSON Array Into A Set Of Dynamic Values

We could directly reference the values in the Select: Create Rows action but it will be easier if we generate values that appear in dynamic content menu. Add a Data Operations – Parse JSON action and add it to the flow. Use the output of the Select: Create Rows action in the Content property.



Run a test of the flow to see what the JSON response looks like from the Select: Create Rows action. Highlight and copy the array in the body property of the JSON. Then use the Generate from sample feature and paste the array into the input box. The JSON schema should appear exactly as in the image above.



Now the Excel table column names appear in the Dynamic Content box.




Run The Power Automate Flow To Read Rows From An Excel Table

We have now finished building the flow. Give the flow a test run to see how fast it completes the actions. The example below read 50,000 rows in 18s.





Questions?

If you have any questions or feedback about Fastest Way To Read Large Excel Table In Power Automate please leave a message in the comments section below. You can post using your email address and are not required to create an account to join the discussion.

Matthew Devaney

Subscribe
Notify of
guest

25 Comments
Oldest
Newest
Inline Feedbacks
View all comments
Vikas Kottari
6 months ago

Is there any issue/limitation with the Graph API?
Previously one of our customer’s security team denied access to the graph API as using Graph API, we can also use other end points to retrieve AD details and query all the user’s details in the Org, and this was a privacy concern for them.

Kay
Kay
6 months ago

wow, interesting approach and method – Thank you!

Kay
Kay
6 months ago

ps – I would not mind if you feel like creating another blog/tutorial by extending that concept with an add/update of these dynamic values and rows to a Sharepoint List:-)

Tiago
Tiago
6 months ago

Hello Matthew, taking advantage of my friend’s question and taking the opportunity to thank you for your content, I’m a big fan!

It would be interesting to read the Excel data as you did above and use the graph to write these items into a SharePoint list. I believe this is the friend’s question above and it is something I would like to know how to do too.

Thank you in advance and congratulations again on the content!

Tiago
Tiago
6 months ago

Hi Matthew,

Yes, I know we have built in actions to write to SharePoint, but as you showed, using the graph is much faster than using the native Excel connector

I’ve worked on some projects where people updated Excel and it always had to be uploaded to a SharePoint list (For use in power apps, for example) and depending on the number of rows, this took a considerable amount of time.

It’s just an idea to check if the graph saves time using Sharepoint as you showed us there using Excel

Thanks 🙂

Brad Allison
Brad Allison
6 months ago

Sadly I work with a company that uses excel as data sources. I am trying to change that mindset, but one reason they do use excel is because they are hesitant to put hooks directly into SAP. Either way, they have a daily job that dumps a massive employee data file that contains training and qualification data. I have an app that needs to lookup some certification data and I use this file that resides in SharePoint. My issue with the flow is the file ID (a guid) changes every day. The file does not come through with a table so I have a power automate that creates the table. When an employee is selected in the app, it calls a power automate workflow that sends the employee ID and then needs to filter and return the certification data just for that employee. All works wonderfully, but the issue is that I need to go in every morning and amend the power automate to find the new excel file that was produced and point to the new “table1”. I dont want to have to go in and change that every morning. If that part could be fully automated then I would be good to go. Do you have any idea or recommendations?

Haroldbk
Haroldbk
6 months ago

that works great! thank you!

Rodrigo
Rodrigo
6 months ago

Hi Matthew, I am looking for a way to combine Excel files (basically put all worksheets in one workbook, while preserving formatting, cover images or tables).
I have created some flows but only using ENCODIAN I have the required results:
1. using a premium connector (ENCODIAN) works fine but I am looking for something free because of a budget issue.
2. Using the Office Scripts worksheet merge method but I can’t seem to copy the format of my worksheets so I can actually use it (This is an invoice process so it needs the format selected for each client).
3. I tried using Microsoft Graph to get a consolidated excel (which I manually build with all my invoice types) and using DELETE WORKSHEET to keep only the specific worksheets I need.(I can’t get it to work yet).

If you have any advice for this I would be very grateful. Thanks in advance for sharing.

Ramesh Mukka
Ramesh Mukka
6 months ago

I get output for Drive id and Item id. But get error invalidRequest at Invoke an HTTP Request action.I copied Url of the request exactly from yours. Replaced Drive Id, Item Id and Sheet name.

v1.0/drives/@{outputs(‘Compose:_Drive_ID’)}/items/@{outputs(‘Compose:_Item_ID’)}/workbook/worksheets/Sheet2/tables/CorsearchTM/rows

{
  “error”: {
    “code”: “invalidRequest”,
    “message”: “Invalid request”,
    “innerError”: {
      “date”: “2023-10-18T05:50:10”,
      “request-id”: “928ddf5d-38fb-4c84-8e3b-8c5525802065”,
      “client-request-id”: “928ddf5d-38fb-4c84-8e3b-8c5525802065”
    }
  }
}

Sharath
Sharath
6 months ago
Reply to  Ramesh Mukka

Please verify the URI value being passed for Invoke an http action in the run result. It should have id’s at both drive, file id places, not names.

Yılmaz Öztürk
Yılmaz Öztürk
6 months ago

Hello, I have a question about this. 

I’m connecting with the office 365 groups connector from the graph API power apps.
I managed to import the items in the Sharepoint list, but I can’t show them in Gallery either.

Set(
  varList2;
  Office365Grupları.HttpRequest(
    “https://graph.microsoft.com/v1.0/sites/****.sharepoint.com,id/lists”;
    “GET”;
    “”
  )
)

would you like to publish a study on this topic

thank you for your work in advance.

Ekran görüntüsü 2023-10-18 114324.png
Ramesh Mukka
Ramesh Mukka
6 months ago

Hey Matt,
This doesn’t work when a file is selected dynamically like when using a trigger “When a file created”. When I select “Identifier” dynamic property to choose the file, in that case the file property comes as something of this format which is quite different from what you have in your example. When a file is selected manually it works perfectly fine.
“file”“LMS%2bAutomation%252fCorsearch%2bTrademarks%252fAutoliv_ToSync_02.xlsx”

Ramesh Mukka
Ramesh Mukka
6 months ago
Reply to  Ramesh Mukka

I found a way for this problem. I wish this helps someone else too.

The Thumbnail property from the trigger has the file id embedded. We can use expression decodeUriComponent(triggerOutputs()?[‘body/{Thumbnail}/Large’]) to get the readable string of the Thumbnail and do string operations to fetch the file Id. It is the text between “/items/” and “?version” of that string.

Nuno
Nuno
6 months ago

Hi Matthew,

Great content – as always, thank you!

I’ve tried to beat your result, without the Graph API.

The best I could achieve was 10 seconds to read an Excel table with 50000 rows and 4 columns!

It doesn’t offer any advantage to your method, except for the fact that it doesn’t require a Premium Connector, which I guess the HTTP request method does.

If you allow for a guest post, I’d be happy to share the flow here.

Anyway, thanks for this great content!

Nuno
Nuno
6 months ago

Exactly!
I’ve actually written a post on my blog about it.
Should you be interested, you may find it here.

Roni Souza
Roni Souza
6 months ago

Hello Math

This flow was surprising, but it doesn’t work for me, as it is a PREMIUM connector!

I was very sad because I had gained performance in my routine tasks.

Please let us know when the Flow is PREMIUM or not, this helps a lot when creating.

But thank you for your blog, it helped me a lot to grow!