Обучение
Модуль
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.
Этот браузер больше не поддерживается.
Выполните обновление до Microsoft Edge, чтобы воспользоваться новейшими функциями, обновлениями для системы безопасности и технической поддержкой.
Table.ToList(table as table, optional combiner as nullable function) as list
Преобразует таблицу в список, применяя указанную функцию объединения к каждой строке значений в таблице.
Объедините текст каждой строки с запятой.
Использование
Table.ToList(
Table.FromRows({
{Number.ToText(1), "Bob", "123-4567"},
{Number.ToText(2), "Jim", "987-6543"},
{Number.ToText(3), "Paul", "543-7890"}
}),
Combiner.CombineTextByDelimiter(",")
)
Выходные данные
{"1,Bob,123-4567", "2,Jim,987-6543", "3,Paul,543-7890"}
Обучение
Модуль
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.