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/data-factory/wrangling-data-flow-functions.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,13 +113,13 @@ Keep and Remove Top, Keep Range (corresponding M functions,
113
113
| Function | Status |
114
114
| -- | -- |
115
115
| Table.PromoteHeaders | Not supported. The same result can be achieved by setting “First row as header” in the dataset. |
116
-
| Table.CombineColumns | This is a very common scenario which is not directly supported but can be achieved by adding a new column which concatenates two given columns. For example, Table.AddColumn(RemoveEmailColumn, “Name”, each [FirstName] & ” ” & [LastName]) |
116
+
| Table.CombineColumns | This is a common scenario that isn't directly supported but can be achieved by adding a new column that concatenates two given columns. For example, Table.AddColumn(RemoveEmailColumn, “Name”, each [FirstName] & ” ” & [LastName]) |
117
117
| Table.TransformColumnTypes | This is supported in most cases. The following scenarios are unsupported: transforming string to currency type, transforming string to time type, transforming string to Percentage type. |
118
118
| Table.NestedJoin | Just doing a join will result in a validation error. The columns must be expanded for it to work. |
119
-
| Table.Distinct | Remove duplicate rows is not supported. |
120
-
| Table.RemoveLastN | Remove bottom rows is not supported. |
121
-
| Table.RowCount | Not supported, but can achieved with an add column with all cells empty (condition column can be used) and then using group by on that column. Table.Group is supported. |
122
-
| Row level error handling | Row level error handling is currently not supported. For example, to filter out non-numeric values from a column, one approach would be to transform the text column to a number. Every cell which fails to transform will be in an error state and need to be filtered. This scenario is not possible in wrangling data flow. |
| Table.RowCount | Not supported, but can be achieved with an add column with all cells empty (condition column can be used) and then using group by on that column. Table.Group is supported. |
122
+
| Row level error handling | Row level error handling is currently not supported. For example, to filter out non-numeric values from a column, one approach would be to transform the text column to a number. Every cell which fails to transform will be in an error state and need to be filtered. This scenario isn't possible in wrangling data flow. |
0 commit comments