Školení
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.
Tento prohlížeč se už nepodporuje.
Upgradujte na Microsoft Edge, abyste mohli využívat nejnovější funkce, aktualizace zabezpečení a technickou podporu.
Table.ReplaceErrorValues(table as table, errorReplacement as list) as table
Nahradí chybové hodnoty v zadaných sloupcích table
novými hodnotami v seznamu errorReplacement
. Formát seznamu je {{column1, value1}, ...}. V každém sloupci může existovat pouze jedna náhradní hodnota. Pokud zadáte sloupec více než jednou, dojde k chybě.
Nahraďte chybovou hodnotu textem "world" v tabulce.
Použití
Table.ReplaceErrorValues(
Table.FromRows({{1, "hello"}, {3, ...}}, {"A", "B"}),
{"B", "world"}
)
Výstup
Table.FromRecords({
[A = 1, B = "hello"],
[A = 3, B = "world"]
})
Nahraďte chybovou hodnotu ve sloupci A textem "hello" a ve sloupci B textem "world" v tabulce.
využití
Table.ReplaceErrorValues(
Table.FromRows({{..., ...}, {1, 2}}, {"A", "B"}),
{{"A", "hello"}, {"B", "world"}}
)
Výstup
Table.FromRecords({
[A = "hello", B = "world"],
[A = 1, B = 2]
})
Školení
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.
Dokumentace
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