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§
readonly additional Fields?: { name?: string } | { index?: number }readonly data Property?: stringThe name of the property into which to write the RAW data Default: "data"
readonly data Start Row?: numberIndex of the first row which contains the actual data and not the keys. Starts with 0. Default: 1 Type options: {"minValue":1}
readonly filters?: { ... }Default: {}
readonly key Row?: numberIndex 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}
readonly limit?: numberMax number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}
readonly lookup Column?: stringThe name of the column in which to look for value
readonly lookup Value?: stringThe value to look for in column
readonly operation?:
| "getAll"
| "lookup"
| "addWorksheet"
| "getContent"
| "addRow"
| "getColumns"
| "getRows"Default: "create"
readonly options?: { ... }Default: {}
readonly range?: stringThe address or the name of the range. If not specified, the entire worksheet range is returned. Default: "A1:C3"
readonly raw Data?: booleanWhether the data should be returned RAW instead of parsed into keys according to their header
readonly resource?: "table" | "workbook" | "worksheet"Default: "workbook"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly table?: stringChoose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getTables","loadOptionsDependsOn":["worksheet"]}
readonly workbook?: stringChoose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getWorkbooks"}
readonly worksheet?: stringChoose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getworksheets","loadOptionsDependsOn":["workbook"]}
Default: {}