次の方法で共有


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]
})