Table.Contains
Azt jelzi, hogy sorként szerepel-e az adott rekord a táblában.
Syntax
Table.Contains(
table as table,
row as record,
optional equationCriteria as any
) as logical
Remarks
Azt jelzi, hogy sorként szerepel-e az adott row rekord a(z) table táblában. A választható equationCriteria paraméterrel határozható meg a tábla sorainak összehasonlítása.
Examples
Example #1
Megállapítja, hogy a tábla tartalmazza-e az adott sort.
Table.Contains(
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"]
}),
[Name = "Bob"]
)
Result:
true
Example #2
Megállapítja, hogy a tábla tartalmazza-e az adott sort.
Table.Contains(
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"]
}),
[Name = "Ted"]
)
Result:
false
Example #3
Kizárólag a [Name] oszlop összehasonlításával megállapítja, hogy a tábla tartalmazza-e az adott sort.
Table.Contains(
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"]
}),
[CustomerID = 4, Name = "Bob"],
"Name"
)
Result:
true
Category
Table.Membership