Latihan
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.
Pelayar ini tidak lagi disokong.
Naik taraf kepada Microsoft Edge untuk memanfaatkan ciri, kemas kini keselamatan dan sokongan teknikal yang terkini.
Record.Combine(records as list) as record
Combines the records in the given records
. If the records
contains non-record values, an error is returned.
Create a combined record from the records.
Usage
Record.Combine({
[CustomerID = 1, Name = "Bob"],
[Phone = "123-4567"]
})
Output
[CustomerID = 1, Name = "Bob", Phone = "123-4567"]
Latihan
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.