Latihan
Modul
Author a basic formula that uses tables and records in a Power Apps canvas app - Training
Learn how to author a basic formula that uses tables and records in a Power Apps canvas app.
Pelayar ini tidak lagi disokong.
Naik taraf kepada Microsoft Edge untuk memanfaatkan ciri, kemas kini keselamatan dan sokongan teknikal yang terkini.
Table.Repeat(table as table, count as number) as table
Returns a table with the rows from the input table
repeated the specified count
times.
Repeat the rows in the table two times.
Usage
Table.Repeat(
Table.FromRecords({
[a = 1, b = "hello"],
[a = 3, b = "world"]
}),
2
)
Output
Table.FromRecords({
[a = 1, b = "hello"],
[a = 3, b = "world"],
[a = 1, b = "hello"],
[a = 3, b = "world"]
})
Latihan
Modul
Author a basic formula that uses tables and records in a Power Apps canvas app - Training
Learn how to author a basic formula that uses tables and records in a Power Apps canvas app.
Dokumentasi
Μάθετε περισσότερα σχετικά με τα εξής: Table.Column
Μάθετε περισσότερα σχετικά με τα εξής: Table.ToList
Table.TransformColumns - PowerQuery M
Μάθετε περισσότερα σχετικά με τα εξής: Table.TransformColumns