Instruire
Modul
Author a basic formula that uses tables and records in a Power Apps canvas app - Training
Learn how to author a basic formula that uses tables and records in a Power Apps canvas app.
Acest browser nu mai este acceptat.
Faceți upgrade la Microsoft Edge pentru a profita de cele mai noi funcții, actualizări de securitate și asistență tehnică.
Table.ReplaceErrorValues(table as table, errorReplacement as list) as table
Replaces the error values in the specified columns of the table
with the new values in the errorReplacement
list. The format of the list is {{column1, value1}, ...}. There may only be one replacement value per column, specifying the column more than once will result in an error.
Replace the error value with the text "world" in the table.
Usage
Table.ReplaceErrorValues(
Table.FromRows({{1, "hello"}, {3, ...}}, {"A", "B"}),
{"B", "world"}
)
Output
Table.FromRecords({
[A = 1, B = "hello"],
[A = 3, B = "world"]
})
Replace the error value in column A with the text "hello" and in column B with the text "world" in the table.
Usage
Table.ReplaceErrorValues(
Table.FromRows({{..., ...}, {1, 2}}, {"A", "B"}),
{{"A", "hello"}, {"B", "world"}}
)
Output
Table.FromRecords({
[A = "hello", B = "world"],
[A = 1, B = 2]
})
Instruire
Modul
Author a basic formula that uses tables and records in a Power Apps canvas app - Training
Learn how to author a basic formula that uses tables and records in a Power Apps canvas app.
Documentație
Table.TransformColumns - PowerQuery M
Learn more about: Table.TransformColumns
Table.AddColumn - PowerQuery M
Learn more about: Table.AddColumn
Table.ReplaceValue - PowerQuery M
Learn more about: Table.ReplaceValue