Træning
Modul
Create formulas that use tables, records, and collections in a canvas app in Power Apps - Training
Do you have need for complex formulas in your app? This module can help you write those formulas.
Denne browser understøttes ikke længere.
Opgrader til Microsoft Edge for at drage fordel af de nyeste funktioner, sikkerhedsopdateringer og teknisk support.
Table.ToList(table as table, optional combiner as nullable function) as list
Konverterer en tabel til en liste ved at anvende den angivne kombinationsfunktion på hver række med værdier i tabellen.
Kombiner teksten i hver række med et komma.
Brug
Table.ToList(
Table.FromRows({
{Number.ToText(1), "Bob", "123-4567"},
{Number.ToText(2), "Jim", "987-6543"},
{Number.ToText(3), "Paul", "543-7890"}
}),
Combiner.CombineTextByDelimiter(",")
)
Output
{"1,Bob,123-4567", "2,Jim,987-6543", "3,Paul,543-7890"}
Træning
Modul
Create formulas that use tables, records, and collections in a canvas app in Power Apps - Training
Do you have need for complex formulas in your app? This module can help you write those formulas.