Passa al contenuto principale

Table.FirstN

Restituisce le prime righe del conteggio specificate.

Syntax

Table.FirstN(
table as table,
countOrCondition as any
) as table

Remarks

Restituisce le prime righe della tabella table a seconda del valore di countOrCondition:

  • Se countOrCondition è un numero, verrà restituito lo stesso numero di righe, a partire dall'alto.
  • Se countOrCondition è una condizione, verranno restituite le righe che soddisfano la condizione finché non viene trovata una riga che non soddisfa la condizione.

Examples

Example #1

Trovare le prime due righe della tabella.

Table.FirstN(
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"]
}),
2
)

Result:

Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"]
})

Example #2

Trovare le prime righe in cui [a] > 0 nella tabella.

Table.FirstN(
Table.FromRecords({
[a = 1, b = 2],
[a = 3, b = 4],
[a = -5, b = -6]
}),
each [a] > 0
)

Result:

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

Category

Table.Row operations