Træning
Modul
Create formulas that use tables, records, and collections in a canvas app in Power Apps - Training
Do you have need for complex formulas in your app? This module can help you write those formulas.
Denne browser understøttes ikke længere.
Opgrader til Microsoft Edge for at drage fordel af de nyeste funktioner, sikkerhedsopdateringer og teknisk support.
Table.FirstN(table as table, countOrCondition as any) as table
Returnerer den eller de første rækker i tabellen table
, afhængigt af værdien af countOrCondition
:
countOrCondition
er et tal, returneres så mange rækker (startende øverst).countOrCondition
er en betingelse, returneres de rækker, der opfylder betingelsen, indtil en række ikke opfylder betingelsen.Find de første to rækker i tabellen.
brug
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"]
})
Find de første rækker, hvor [a] > 0 i tabellen.
brug
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]
})
Træning
Modul
Create formulas that use tables, records, and collections in a canvas app in Power Apps - Training
Do you have need for complex formulas in your app? This module can help you write those formulas.