For the complete documentation index, see llms.txt. This page is also available as Markdown.

ReadSpreadsheet

Receive an OpenDocument Spreadsheet .ods file and extract tabular data from the first sheet, converting it into JSON format.

Task version: 1.0.0

Required Frends version: 5.7+

Required .NET version: 8.0

Compatible Agents: Crossplatform

Task Parameters

Name
Description

FilePath : String

Full path of the target .ods file to be read.

Default: - Example: c:\temp\foo.ods

Task Result

Name
Description

Success : Boolean

Indicates if the task completed successfully. Example: true

Data : Object

A JSON array containing one object per extracted spreadsheet row. Example: [ { "Name": "John" }, { "Name": "Jane" } ]

Error : Error

Error that occurred during task execution. Example: object { string Message, Exception AdditionalInfo }

Task Changelog

Changelog for Task Frends.Odf.ReadSpreadsheet.

[1.0.0] - 2026-05-25

Added

  • Initial implementation

Last updated

Was this helpful?