Interface MicrosoftExcelV1NodeParameters

Source
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 additionalFields?: { name?: string } | { index?: number }

Default: {}

Source§

readonly dataProperty?: string

The name of the property into which to write the RAW data Default: "data"

Source§

readonly dataStartRow?: 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 filters?: { fields?: string }

Default: {}

Source§

readonly keyRow?: 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

Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}

Source§

readonly lookupColumn?: string

The name of the column in which to look for value

Source§

readonly lookupValue?: string

The value to look for in column

Source§

readonly operation?:
    | "getAll"
    | "lookup"
    | "addWorksheet"
    | "getContent"
    | "addRow"
    | "getColumns"
    | "getRows"

Default: "create"

Source§

readonly options?: { returnAllMatches?: boolean }

Default: {}

Source§

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 rawData?: boolean

Whether the data should be returned RAW instead of parsed into keys according to their header

Source§

readonly resource?: "table" | "workbook" | "worksheet"

Default: "workbook"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit

Source§

readonly table?: string

Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getTables","loadOptionsDependsOn":["worksheet"]}

Source§

readonly workbook?: string

Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getWorkbooks"}

Source§

readonly worksheet?: string

Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getworksheets","loadOptionsDependsOn":["workbook"]}