Pelatihan
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.
Browser ini sudah tidak didukung.
Mutakhirkan ke Microsoft Edge untuk memanfaatkan fitur, pembaruan keamanan, dan dukungan teknis terkini.
Table.ToList(table as table, optional combiner as nullable function) as list
Mengonversi tabel menjadi daftar dengan menerapkan fungsi gabungan yang ditentukan ke setiap baris nilai dalam tabel.
Gabungkan teks setiap baris dengan koma.
Penggunaan
Table.ToList(
Table.FromRows({
{Number.ToText(1), "Bob", "123-4567"},
{Number.ToText(2), "Jim", "987-6543"},
{Number.ToText(3), "Paul", "543-7890"}
}),
Combiner.CombineTextByDelimiter(",")
)
Hasil
{"1,Bob,123-4567", "2,Jim,987-6543", "3,Paul,543-7890"}
Pelatihan
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.