0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Power Appsで、データテーブルの〇番目から×個のデータを取得したい

Last updated at Posted at 2023-05-23

結論

LastN関数とFirstN関数1を組み合わせて使用することで取得可能です。

解説

例えば、あるテーブルデータがあり、そのうちi番目からM個取得したい場合、以下のような実装をすることで取得ができます。

FirstN(LastN([データテーブル], CountRows([データテーブル]) - i + 1), M)

以下のようなテーブルが「IceCream」という名前で格納されている場合で考えます。

Flavor Quantity
"Chocolate" 100
"Vanilla" 200
"Strawberry" 300
"Mint Chocolate" 60
"Pistachio" 200

2番目から3個、データを取得したい場合、以下のように記述します。

FirstN(LastN(IceCream, CountRows(IceCream) - 1), 3)

これをギャラリーのItemsに記述すると、確かに2番目から3個取得できていることが分かります。
01.png

以上です。
ご不明点などがあれば教えていただけると幸いです。

参考

以下の記事を参考にしました。

  1. LastN関数とFirstN関数は共にデータソースに委任できない関数です。ご注意ください。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?