You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/logic-apps/logic-apps-perform-data-operations.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -165,19 +165,19 @@ If you prefer working in the code view editor, you can copy the example **Create
165
165
166
166
1. Save your logic app. On the designer toolbar, select **Save**.
167
167
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:
169
169
170
170
1. Open the **Columns** list, and select **Custom**.
171
171
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.
173
173
174
174
1. To specify custom values, in the **Key** property, specify the column value.
175
175
176
176
> [!TIP]
177
177
> To create user-friendly tokens for the properties in JSON objects so you can select those properties as inputs,
178
178
> use the [Parse JSON](#parse-json-action) before calling the **Create CSV table** action.
179
179
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:
181
181
182
182
```json
183
183
"Create_CSV_table": {
@@ -248,19 +248,19 @@ If you prefer working in the code view editor, you can copy the example **Create
248
248
249
249
1. Save your logic app. On the designer toolbar, select **Save**.
250
250
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:
252
252
253
253
1. Open the **Columns** list, and select **Custom**.
254
254
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.
256
256
257
257
1. To specify custom values, in the **Key** property, specify the column value.
258
258
259
259
> [!TIP]
260
260
> To create user-friendly tokens for the properties in JSON objects so you can select those properties as inputs,
261
261
> use the [Parse JSON](#parse-json-action) before calling the **Create CSV table** action.
262
262
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:
0 commit comments