Table.IsDistinct
Indica se a tabela contém apenas linhas distintas (sem duplicados).
Syntax
Table.IsDistinct(
table as table,
optional comparisonCriteria as any
) as logical
Remarks
Indica se table
contém apenas linhas distintas (sem duplicados). Devolve true
se as linhas forem distintas; caso contrário, devolve false
. Um parâmetro opcional, comparisonCriteria
, especifica as colunas da tabela nas quais a duplicação é testada. Se comparisonCriteria
não for especificado, todas as colunas são testadas.
Examples
Example #1
Determinar se a tabela é distinta.
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"]
})
)
Result:
true
Example #2
Determinar se a tabela é distinta na coluna.
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"
)
Result:
false
Category
Table.Membership