Table.MatchesAnyRows
Sintaxe
Table.MatchesAnyRows(table as table, condition as function) as logical
Sobre
Indica se alguma das linhas na table
atende à condition
especificada. Retorna true
se alguma das linhas corresponde; caso contrário, false
.
Exemplo 1
Determinar se algum dos valores de linha na coluna [a] são pares na tabela ({[a = 2, b = 4], [a = 6, b = 8]})
.
Usage
Table.MatchesAnyRows(
Table.FromRecords({
[a = 1, b = 4],
[a = 3, b = 8]
}),
each Number.Mod([a], 2) = 0
)
Saída
false
Exemplo 2
Determinar se algum dos valores de linha são [a = 1, b = 2] na tabela ({[a = 1, b = 2], [a = 3, b = 4]})
.
Usage
Table.MatchesAnyRows(
Table.FromRecords({
[a = 1, b = 2],
[a = -3, b = 4]
}),
each _ = [a = 1, b = 2]
)
Saída
true