Skip to content

Commit 6ea0451

Browse files
committed
update
1 parent 03b9fe4 commit 6ea0451

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/data-factory/wrangling-data-flow-functions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,13 @@ Keep and Remove Top, Keep Range (corresponding M functions,
113113
| Function | Status |
114114
| -- | -- |
115115
| 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]) |
117117
| 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. |
118118
| 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. |
119+
| Table.Distinct | Remove duplicate rows isn't supported. |
120+
| Table.RemoveLastN | Remove bottom rows isn't supported. |
121+
| 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. |
123123
| Table.Transpose | Not supported |
124124
| Table.Pivot | Not supported |
125125

0 commit comments

Comments
 (0)