Table.RemoveRowsWithErrors

语法

Table.RemoveRowsWithErrors(table as table, optional columns as nullable list) as table

关于

返回一个表,其中删除了在至少一个单元格中包含错误的输入表中的行。 如果指定了列列表,则仅检查指定列中的单元格是否存在错误。

示例 1

从第一行中删除错误值。

使用情况

Table.RemoveRowsWithErrors(    Table.FromRecords({         [Column1 = ...],        [Column1 = 2],        [Column1 = 3]     }))

输出

Table.FromRecords({     [Column1 = 2],    [Column1 = 3] })

results matching ""

    No results matching ""