Table.RemoveRowsWithErrors

構文

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

バージョン情報

少なくともセルの 1 つにエラーがある行を削除した上で、入力テーブルからテーブルが返されます。 列リストが指定されている場合、指定の列のセルのみでエラーが調べられます。

例 1

先頭行からエラー値を削除します。

使用方法

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

出力

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