Table.FirstN
Sintassi
Table.FirstN(table as table, countOrCondition as any) as table
Informazioni su
Restituisce la prima o 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.
Esempio 1
Trovare le prime due righe della tabella.
Utilizzo
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
)
Output
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"]
})
Esempio 2
Trova le prime righe in cui [a] > 0 nella tabella.
Utilizzo
Table.FirstN(
Table.FromRecords({
[a = 1, b = 2],
[a = 3, b = 4],
[a = -5, b = -6]
}),
each [a] > 0
)
Output
Table.FromRecords({
[a = 1, b = 2],
[a = 3, b = 4]
})