Školení
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.
Tento prohlížeč se už nepodporuje.
Upgradujte na Microsoft Edge, abyste mohli využívat nejnovější funkce, aktualizace zabezpečení a technickou podporu.
Table.IsDistinct(table as table, optional comparisonCriteria as any) as logical
Určuje, zda table
obsahuje pouze jedinečné řádky (žádné duplicity). Vrátí true
, pokud jsou řádky odlišné, false
jinak. Volitelný parametr , comparisonCriteria
určuje, které sloupce tabulky se testují pro duplikaci. Pokud comparisonCriteria
není zadaný, testují se všechny sloupce.
Určete, jestli je tabulka odlišná.
Využití
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"]
})
)
Výstup
true
Určete, jestli je tabulka ve sloupci odlišná.
Využití
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"
)
Výstup
false
Školení
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.