Apmācība
Modulis
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.
Šī pārlūkprogramma vairs netiek atbalstīta.
Jauniniet uz Microsoft Edge, lai izmantotu jaunāko līdzekļu, drošības atjauninājumu un tehniskā atbalsta sniegtās priekšrocības.
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"]
})
Apmācība
Modulis
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.
Dokumentācija
Μάθετε περισσότερα σχετικά με τα εξής: Table.Column
Μάθετε περισσότερα σχετικά με τα εξής: Table.ToList
Table.TransformColumns - PowerQuery M
Μάθετε περισσότερα σχετικά με τα εξής: Table.TransformColumns