Обучение
Модуль
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, чтобы воспользоваться новейшими функциями, обновлениями для системы безопасности и технической поддержкой.
Record.Combine(records as list) as record
Объединяет записи в заданной области records
. Если records
содержит значения, отличные от записи, возвращается ошибка.
Создайте объединенную запись из записей.
Использование
Record.Combine({
[CustomerID = 1, Name = "Bob"],
[Phone = "123-4567"]
})
Выход
[CustomerID = 1, Name = "Bob", Phone = "123-4567"]
Обучение
Модуль
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.