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.IsDistinct(table as table, optional comparisonCriteria as any) as logical
Indicates whether the table
contains only distinct rows (no duplicates). Returns true
if the rows are distinct, false
otherwise. An optional parameter, comparisonCriteria
, specifies which columns of the table are tested for duplication. If comparisonCriteria
is not specified, all columns are tested.
Determine if the table is distinct.
Usage
Table.IsDistinct(
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"],
[CustomerID = 4, Name = "Ringo", Phone = "232-1550"]
})
)
Output
true
Determine if the table is distinct in column.
Usage
Table.IsDistinct(
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"],
[CustomerID = 5, Name = "Bob", Phone = "232-1550"]
}),
"Name"
)
Output
false
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.FromColumns - PowerQuery M
เรียนรู้เพิ่มเติมเกี่ยวกับ: Table.FromColumns
Table.MatchesAllRows - PowerQuery M
เรียนรู้เพิ่มเติมเกี่ยวกับ: Table.MatchesAllRows
เรียนรู้เพิ่มเติมเกี่ยวกับ: Table.Column