Skip to content

Commit b8b8a18

Browse files
committed
Fix art link and clarity edits
1 parent d7244e2 commit b8b8a18

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/logic-apps/logic-apps-perform-data-operations.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ In the action, keep the **Header** column empty. On each row in the **Value** co
199199

200200
1. In the expression editor, enter this expression that specifies the array property value that you want, and select **OK**.
201201

202-
`item()?['<property-name>']`
202+
`item()?['<array-property-name>']`
203203

204204
For example:
205205

@@ -208,7 +208,7 @@ In the action, keep the **Header** column empty. On each row in the **Value** co
208208

209209
![Expression to dereference property](./media/logic-apps-perform-data-operations/csv-table-expression.png)
210210

211-
1. Repeat the previous steps for each property that you want. When you're done, your action looks like this example:
211+
1. Repeat the previous steps for each array property that you want. When you're done, your action looks like this example:
212212

213213
![Finished expressions](./media/logic-apps-perform-data-operations/finished-csv-expression.png)
214214

@@ -224,12 +224,12 @@ In the action's JSON definition, within the `columns` array, set the `header` pr
224224

225225
1. On the designer toolbar, select **Code view**.
226226

227-
1. In the code editor, in the action's `columns` array, add the empty `header` property and this `value` expression for each column of values that you want from the array:
227+
1. In the code editor, in the action's `columns` array, add the empty `header` property and this `value` expression for each column of array values that you want:
228228

229229
```json
230230
{
231231
"header": "",
232-
"value": "@item()?['<property-name>']"
232+
"value": "@item()?['<array-property-name>']"
233233
}
234234
```
235235

@@ -352,7 +352,7 @@ In the action, keep the **Header** column empty. On each row in the **Value** co
352352

353353
1. In the expression editor, enter this expression that specifies the array property value that you want, and select **OK**.
354354

355-
`item()?['<property-name>']`
355+
`item()?['<array-property-name>']`
356356

357357
For example:
358358

@@ -361,28 +361,28 @@ In the action, keep the **Header** column empty. On each row in the **Value** co
361361

362362
![Expression to dereference property](./media/logic-apps-perform-data-operations/html-table-expression.png)
363363

364-
1. Repeat the previous steps for each property that you want. When you're done, your action looks like this example:
364+
1. Repeat the previous steps for each array property that you want. When you're done, your action looks like this example:
365365

366366
![Finished expressions](./media/logic-apps-perform-data-operations/finished-html-expression.png)
367367

368368
1. To resolve expressions into more descriptive versions, switch to code view and back to designer view, and then reopen the collapsed action:
369369

370370
The **Create HTML table** action now appears like this example:
371371

372-
!["Create HTML table" action with resolved expressions and no headers](./media/logic-apps-perform-data-operations/resolved-csv-expression.png)
372+
!["Create HTML table" action with resolved expressions and no headers](./media/logic-apps-perform-data-operations/resolved-html-expression.png)
373373

374374
#### Work in code view
375375

376376
In the action's JSON definition, within the `columns` array, set the `header` property to an empty string. For each `value` property, dereference each array property that you want.
377377

378378
1. On the designer toolbar, select **Code view**.
379379

380-
1. In the code editor, in the action's `columns` array, add the empty `header` property and this `value` expression for each column of values that you want from the array:
380+
1. In the code editor, in the action's `columns` array, add the empty `header` property and this `value` expression for each column of array values that you want:
381381

382382
```json
383383
{
384384
"header": "",
385-
"value": "@item()?['<property-name>']"
385+
"value": "@item()?['<array-property-name>']"
386386
}
387387
```
388388

0 commit comments

Comments
 (0)