Table.RemoveFirstN
Trả về một bảng chứa các hàng đếm đầu tiên bị bỏ qua.
Syntax
Table.RemoveFirstN(
table as table,
optional countOrCondition as any
) as table
Remarks
Trả về một bảng không chứa số lượng hàng được chỉ định đầu tiên countOrCondition
của bảng table
. Số lượng hàng bị loại bỏ tùy theo tham số tùy chọn countOrCondition
.
- Nếu
countOrCondition
bị bỏ qua thì chỉ hàng đầu tiên bị loại bỏ. - Nếu
countOrCondition
là một số thì nhiều hàng (bắt đầu từ trên cùng) sẽ bị loại bỏ. - Nếu
countOrCondition
là một điều kiện thì các hàng đáp ứng điều kiện này sẽ bị loại bỏ cho đến khi một hàng không đáp ứng điều kiện.
Examples
Example #1
Loại bỏ hàng đầu tiên của bảng.
Table.RemoveFirstN(
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"],
[CustomerID = 4, Name = "Ringo", Phone = "232-1550"]
}),
1
)
Result:
Table.FromRecords({
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"],
[CustomerID = 4, Name = "Ringo", Phone = "232-1550"]
})
Example #2
Loại bỏ hai hàng đầu tiên của bảng.
Table.RemoveFirstN(
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"],
[CustomerID = 4, Name = "Ringo", Phone = "232-1550"]
}),
2
)
Result:
Table.FromRecords({
[CustomerID = 3, Name = "Paul", Phone = "543-7890"],
[CustomerID = 4, Name = "Ringo", Phone = "232-1550"]
})
Example #3
Loại bỏ các hàng đầu tiên trong đó [CustomerID] <=2 của bảng.
Table.RemoveFirstN(
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"],
[CustomerID = 4, Name = "Ringo", Phone = "232-1550"]
}),
each [CustomerID] <= 2
)
Result:
Table.FromRecords({
[CustomerID = 3, Name = "Paul", Phone = "543-7890"],
[CustomerID = 4, Name = "Ringo", Phone = "232-1550"]
})
Category
Table.Row operations