Table.RemoveRowsWithErrors
Table.RemoveRowsWithErrors(table as table, optional columns as nullable list) as table
返回一个表,其中已从输入表中删除了在至少一个单元中包含错误的行。如果指定了列列表,则只检查指定列中的单元内是否有错误。
示例:
从第一行中删除错误值。
使用情况:
Table.RemoveRowsWithErrors(Table.FromRecords({[Column1=...],[Column1=2], [Column1=3]}))
输出:
Table.FromRecords({[Column1=2], [Column1=3]})