Opplæring
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 nettleseren støttes ikke lenger.
Oppgrader til Microsoft Edge for å dra nytte av de nyeste funksjonene, sikkerhetsoppdateringene og den nyeste tekniske støtten.
Table.ToList(table as table, optional combiner as nullable function) as list
Konverterer en tabell til en liste ved å bruke den angitte kombinasjonsfunksjonen på hver rad med verdier i tabellen.
Kombiner teksten i hver rad med et komma.
Bruk
Table.ToList(
Table.FromRows({
{Number.ToText(1), "Bob", "123-4567"},
{Number.ToText(2), "Jim", "987-6543"},
{Number.ToText(3), "Paul", "543-7890"}
}),
Combiner.CombineTextByDelimiter(",")
)
Utdata
{"1,Bob,123-4567", "2,Jim,987-6543", "3,Paul,543-7890"}
Opplæring
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.