Szkolenie
Moduł
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.
Ta przeglądarka nie jest już obsługiwana.
Przejdź na przeglądarkę Microsoft Edge, aby korzystać z najnowszych funkcji, aktualizacji zabezpieczeń i pomocy technicznej.
Table.ToColumns(table as table) as list
Tworzy listę zagnieżdżonych list z tabeli table
. Każdy element listy jest wewnętrzną listą zawierającą wartości kolumn.
Utwórz listę wartości kolumn z tabeli.
użycie
Table.ToColumns(
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"]
})
)
Wyjście
{{1, 2}, {"Bob", "Jim"}, {"123-4567", "987-6543"}}
Szkolenie
Moduł
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.