This Choreo gets the range object associated with the data body of the table.The documentation for this Excel resource can be found here.
Here is an example of input set:
ClientID: {YOUR MICROSOFT CLIENT ID}
ClientSecret: {YOUR MICROSOFT CLIENT SECRET}
Username: {YOUR MICROSOFT USERNAME}
Password: {YOUR MICROSOFT PASSWORD}
ItemPath: MyFolder/Book.xlsx
Worksheet: Sheet1
Table: Table1
The following is a sample of the JSON information returned by this Choreo:
{
"@odata.context": "https:\/\/graph.microsoft.com\/v1.0\/$metadata#workbookRange",
"@odata.type": "#microsoft.graph.workbookRange",
"@odata.id": "\/users('63aefdba-3eb1-4da4-84f0-1a433cc8c8da')\/drive\/root\/workbook\/worksheets(%27%7B00000000-0001-0000-0000-000000000000%7D%27)\/tables(%272%27)\/dataBodyRange()",
"address": "Sheet1!A2:C3",
"addressLocal": "Sheet1!A2:C3",
"cellCount": 6,
"columnCount": 3,
"columnHidden": false,
"columnIndex": 0,
"formulas": [
[
100,
200,
300
],
[
101,
201,
301
]
],
"formulasLocal": [
[
100,
200,
300
],
[
101,
201,
301
]
],
"formulasR1C1": [
[
100,
200,
300
],
[
101,
201,
301
]
],
"hidden": false,
"numberFormat": [
[
"General",
"General",
"General"
],
[
"General",
"General",
"General"
]
],
"rowCount": 2,
"rowHidden": false,
"rowIndex": 1,
"text": [
[
"100",
"200",
"300"
],
[
"101",
"201",
"301"
]
],
"values": [
[
100,
200,
300
],
[
101,
201,
301
]
],
"valueTypes": [
[
"Double",
"Double",
"Double"
],
[
"Double",
"Double",
"Double"
]
]
}