SpreadsheetRead
Method Signature
SpreadsheetRead(src=[any], sheet=[any], format=[any], headerrow=[any], password=[any])Arguments
Argument
Type
Required
Description
Default
Examples
// Read an Excel file from disk
var spreadsheet = SpreadsheetRead( src = "/path/to/file.xlsx" );
println( "Read spreadsheet with " & SpreadsheetGetColumnCount( spreadsheet ) & " columns" );// Read a specific sheet by name
var spreadsheet = SpreadsheetRead(
src = "/path/to/file.xlsx",
sheet = "Sales"
);
println( "Read sheet: Sales" );Related
Last updated
Was this helpful?
