79689967

Date: 2025-07-04 09:44:52
Score: 1
Natty:
Report link

Simple way - Using 'Select - action' for Columns and 'For each' - action to get combined Rows to get final Result: enter image description here

Workflow - Run Result

Workflow Description:

  1. Manual Trigger added

  2. Parse JSON - action to fetch your received data

  3. Select - action added, to fetch the columns: to read 'name'

    to read 'name' : select- range(0,length(first(outputs('Parse_JSON')?['body']?['tables'])?['columns']))
                                       map - first(outputs('Parse_JSON')?['body']?['tables'])?['columns']?[item()]?['name']
    

    4. Initialize an variable - append to get out put

    5. Added for each action to read 'rows' datas towards selected item in the earlier step

    6. Compose to get - final Primary Result

for each - first(outputs('Parse_JSON')?['body']?['tables'])?['rows']
    select - range(0,length(body('Select_column')))
    map - body('Select_column')?[item()] Vs items('For_each_rows')?[item()]
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vijayamathankumar