interface MicrosoftExcelV1NodeParameters {
additionalFields?:
| { name?: string }
| { index?: number };
dataProperty?: string;
dataStartRow?: number;
filters?: { fields?: string };
keyRow?: number;
limit?: number;
lookupColumn?: string;
lookupValue?: string;
operation?:
| "getAll"
| "lookup"
| "addWorksheet"
| "getContent"
| "addRow"
| "getColumns"
| "getRows";
options?: { returnAllMatches?: boolean };
range?: string;
rawData?: boolean;
resource?: "table" | "workbook" | "worksheet";
returnAll?: boolean;
table?: string;
workbook?: string;
worksheet?: string;
}
Properties§
Source§readonly data Property?: string
readonly data Property?: string
The name of the property into which to write the RAW data Default: "data"
Source§readonly data Start Row?: number
readonly data Start Row?: number
Index of the first row which contains the actual data and not the keys. Starts with 0. Default: 1 Type options: {"minValue":1}
Source§readonly key Row?: number
readonly key Row?: number
Index of the row which contains the keys. Starts at 0. The incoming node data is matched to the keys for assignment. The matching is case sensitve. Type options: {"minValue":0}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}
Source§readonly operation?:
| "getAll"
| "lookup"
| "addWorksheet"
| "getContent"
| "addRow"
| "getColumns"
| "getRows"
readonly operation?:
| "getAll"
| "lookup"
| "addWorksheet"
| "getContent"
| "addRow"
| "getColumns"
| "getRows"
Default: "create"
Source§readonly range?: string
readonly range?: string
The address or the name of the range. If not specified, the entire worksheet range is returned. Default: "A1:C3"
Source§readonly raw Data?: boolean
readonly raw Data?: boolean
Whether the data should be returned RAW instead of parsed into keys according to their header
Source§readonly table?: string
readonly table?: string
Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getTables","loadOptionsDependsOn":["worksheet"]}
Source§readonly workbook?: string
readonly workbook?: string
Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getWorkbooks"}
Source§readonly worksheet?: string
readonly worksheet?: string
Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getworksheets","loadOptionsDependsOn":["workbook"]}
Default: {}