Excel

Microsoft integration · 7 node(s).

00Overview

Microsoft Excel Online spreadsheet operations

Every field below is exactly what you see in the Flomation editor. Fields marked ● live picker let you choose from a list pulled live from your account — no IDs to look up.

01Connecting Excel

Add your credentials as a Flomation environment secret, then pick them in each node. The connection fields are:

i
Pick an Environment on your flow (Flow Settings → Environment) so the secret resolves. Secret fields never show the value — they reference ${secrets.your_secret}.

02Append

Append Rows

microsoft/excel/append_rows · Action

Append rows to a table in a Microsoft Excel Online workbook

FieldTypeDetails
Workbook Item IDstringRequired
Table NamestringRequiredTable1
Rows to appendrowsRequired[["Alice",30],["Bob",25]]
Microsoft Account (email)string
Microsoft OAuth Credentialcredential${credentials.MICROSOFT_EXCEL}

Returns: tool_result, row_index, success, error

03Clear

Clear Range

microsoft/excel/clear_range · Action

Clear contents or formatting from a cell range in an Excel workbook

FieldTypeDetails
Workbook Item IDstringRequired
Worksheet NamestringRequiredSheet1
Cell RangestringRequiredA1:D10
Clear Modestringchoices: All, Formats, Contents
Microsoft Account (email)string
Microsoft OAuth Credentialcredential${credentials.MICROSOFT_EXCEL}

Returns: tool_result, success, error

04Create

Create Workbook

microsoft/excel/create_workbook · Action

Create a new Excel workbook in OneDrive

FieldTypeDetails
FilenamestringRequiredreport.xlsx
Folder PathstringDocuments/Reports
Microsoft Account (email)string
Microsoft OAuth Credentialcredential${credentials.MICROSOFT_EXCEL}

Returns: tool_result, item_id, web_url, success, error

05Get

Get Workbook Metadata

microsoft/excel/get_metadata · Action

Retrieve metadata for a Microsoft Excel Online workbook

FieldTypeDetails
Workbook Item IDstringRequired
Microsoft Account (email)string
Microsoft OAuth Credentialcredential${credentials.MICROSOFT_EXCEL}

Returns: tool_result, workbook, success, error

06List

List Worksheets

microsoft/excel/list_worksheets · Action

List all worksheets in a Microsoft Excel Online workbook

FieldTypeDetails
Workbook Item IDstringRequired
Microsoft Account (email)string
Microsoft OAuth Credentialcredential${credentials.MICROSOFT_EXCEL}

Returns: tool_result, worksheets, count, success, error

07Read

Read Range

microsoft/excel/read_range · Action

Read a cell range from a Microsoft Excel Online workbook

FieldTypeDetails
Workbook Item IDstringRequired
Worksheet NamestringRequiredSheet1
Cell RangestringRequiredA1:D10
Microsoft Account (email)string
Microsoft OAuth Credentialcredential${credentials.MICROSOFT_EXCEL}

Returns: tool_result, values, row_count, column_count, data, success, error

08Write

Write Range

microsoft/excel/write_range · Action

Write values to a cell range in a Microsoft Excel Online workbook

FieldTypeDetails
Workbook Item IDstringRequired
Worksheet NamestringRequiredSheet1
Cell RangestringRequiredA1:D3
Values (JSON 2D array)textRequired[["Name","Age"],["Alice",30]]
Microsoft Account (email)string
Microsoft OAuth Credentialcredential${credentials.MICROSOFT_EXCEL}

Returns: tool_result, success, error

09Notes & Limitations

Behaviours and constraints worth knowing before you build with these nodes.