Skip to main content

Table.MatchesAllRows

ระบุว่าทุกแถวในตารางตรงกับเงื่อนไขที่กำหนดหรือไม่

Syntax

Table.MatchesAllRows(
table as table,
condition as function
) as logical

Remarks

ระบุว่าทุกแถวใน table ตรงกับ condition ที่กำหนดหรือไม่ ส่งกลับ true ถ้าทุกแถวตรงกับเงื่อนไข และ false ถ้าไม่ใช่

Examples

Example #1

กำหนดว่า ค่าแถวทั้งหมดใน [a] เป็นค่าคี่ในตาราง

Table.MatchesAllRows(
Table.FromRecords({
[a = 2, b = 4],
[a = 6, b = 8]
}),
each Number.Mod([a], 2) = 0
)

Result:

true

Example #2

ค้นหาว่าค่าแถวทุกค่าเป็น [a = 1, b = 2] ในตาราง <code>({[a = 1, b = 2], [a = 3, b = 4]})</code> หรือไม่

Table.MatchesAllRows(
Table.FromRecords({
[a = 1, b = 2],
[a = -3, b = 4]
}),
each _ = [a = 1, b = 2]
)

Result:

false

Category

Table.Row operations