user3002273
user3002273

Reputation:

Azure read Excel Online document in Azure Function

I want to create an Azure Function that connects to Logic Apps that will be used as an Add-in for Excel Online. I want this Azure Function to read the Excel online file as a blob.

How can I do this?

Upvotes: 1

Views: 808

Answers (1)

George Chen
George Chen

Reputation: 14334

Per your description, I assume you want to use Logic App read the excel file then use Function to store the excel file into the Blob.

You could just do it with Logic App. Firstly use SharePoint connector to get the excel file content, then use Azure Blob connector, Create blob use file name and file content.

enter image description here

enter image description here

And here is the excel blob file in Azure Blob.

enter image description here

Upvotes: 0

Related Questions