Hop til hovedindhold

Table.MatchesAllRows

Angiver, om alle rækkerne i tabellen opfylder den angivne betingelse.

Syntax

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

Remarks

Angiver, om alle rækkerne i tabellen table svarer til den angivne condition. Returnerer true, hvis alle rækkerne matcher. Ellers returneres false.

Examples

Example #1

Find ud af, om alle rækkeværdierne i kolonne [a] også er i tabellen.

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

Result:

true

Example #2

Find ud af, om alle rækkeværdierne er [a = 1, b = 2] i tabellen <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