Skip to content

Commit a18ff7b

Browse files
committed
Clarity edits
1 parent 369c8f4 commit a18ff7b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,19 +165,19 @@ If you prefer working in the code view editor, you can copy the example **Create
165165

166166
1. Save your logic app. On the designer toolbar, select **Save**.
167167

168-
By default, the **Columns** property is set to automatically create the columns based on the array items. To specify custom column headers and values, follow these steps:
168+
By default, the **Columns** property is set to automatically create the table columns based on the array items. To specify custom column headers and values, follow these steps:
169169

170170
1. Open the **Columns** list, and select **Custom**.
171171

172-
1. To specify custom column headers, in the **Header** property, specify the column name.
172+
1. To specify custom headers, in the **Header** property, specify the column name.
173173

174174
1. To specify custom values, in the **Key** property, specify the column value.
175175

176176
> [!TIP]
177177
> To create user-friendly tokens for the properties in JSON objects so you can select those properties as inputs,
178178
> use the [Parse JSON](#parse-json-action) before calling the **Create CSV table** action.
179179
180-
To omit the column headers, switch from designer view to code view, and edit the action's definition to use only the `value` property in the `columns` definition, and omit the `header` property, for example:
180+
To reference and edit the values from the array, or to edit or omit the column headers, you can use the `@item()` function. On the designer toolbar, select **Code view**. Edit the action's definition to use only the `value` property in the `columns` array object, and omit the `header` property, for example:
181181

182182
```json
183183
"Create_CSV_table": {
@@ -248,19 +248,19 @@ If you prefer working in the code view editor, you can copy the example **Create
248248

249249
1. Save your logic app. On the designer toolbar, select **Save**.
250250

251-
By default, the **Columns** property is set to automatically create the columns based on the array items. To specify custom column headers and values, follow these steps:
251+
By default, the **Columns** property is set to automatically create the table columns based on the array items. To specify custom column headers and values, follow these steps:
252252

253253
1. Open the **Columns** list, and select **Custom**.
254254

255-
1. To specify custom column headers, in the **Header** property, specify the column name.
255+
1. To specify custom headers, in the **Header** property, specify the column name.
256256

257257
1. To specify custom values, in the **Key** property, specify the column value.
258258

259259
> [!TIP]
260260
> To create user-friendly tokens for the properties in JSON objects so you can select those properties as inputs,
261261
> use the [Parse JSON](#parse-json-action) before calling the **Create CSV table** action.
262262
263-
To omit the column headers, switch from designer view to code view, and edit the action's definition to use only the `value` property in the `columns` definition, and omit the `header` property, for example:
263+
To reference and edit the values from the array, or to edit or omit the column headers, you can use the `@item()` function. On the designer toolbar, select **Code view**. Edit the action's definition to use only the `value` property in the `columns` array object, and omit the `header` property, for example:
264264

265265
```json
266266
"Create_HTML_table": {

0 commit comments

Comments
 (0)