Table.ReplaceErrorValues

语法

Table.ReplaceErrorValues(table as table, errorReplacement as list) as table

关于

table 的指定列中的错误值替换为 errorReplacement 列表中的新值。 列表的格式为 { { column1, value1 }, ... }。 每列只能有一个替换值,多次指定列将导致错误。

示例 1

在表中将错误值替换为文本“world”。

使用情况

Table.ReplaceErrorValues(    Table.FromRows({ { 1, "hello" }, { 3, ... } }, { "A", "B" }),    { "B", "world" })

输出

Table.FromRecords({     [A = 1, B = "hello"],    [A = 3, B = "world"] })

示例 2

在表中将 A 列中的错误值替换为文本“hello”,将 B 列中的错误值替换为文本“world”。

使用情况

Table.ReplaceErrorValues(    Table.FromRows({ { ..., ... }, { 1, 2 } }, { "A", "B" }),    { { "A", "hello" }, { "B", "world" } })

输出

Table.FromRecords({     [A = "hello", B = "world"],    [A = 1, B = 2] })

results matching ""

    No results matching ""