Hello community,
I am building a Power Automate that takes a json object as input - see below
[
[
"Row 1 ID value",
"Row 1 Name value",
"Row 1 link value",
"Row 1 Comments value"
],
[
"Row 2 ID value",
"Row 2 Name value",
"Row 2 link value",
"Row 2 Comments value"
],
.
.
.
[
"Row n ID value",
"Row n Name value",
"Row n link value",
"Row n Comments value"
]
]
I need to process that input to get specific values "per row" say at positions 0 (which happens to have the row's ID value) and 2 (which happens to have the row's link value), so the output object would look like:
[
[
"Row 1 ID value",
"Row 1 link value",
],
[
"Row 2 ID value",
"Row 2 link value",
],
.
.
.
[
"Row n ID value",
"Row n link value",
]
]
In the real scenario, the input and output objects will have more "values per row", so I will need to hardcode the positions I am taking from the input to the output object.
Is there a simple way to achieve this?

Report
All responses (
Answers (