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?

Power Appsでドロップダウンを使いFilter制御

Last updated at Posted at 2024-09-09

Power Appsのギャラリーでアイテムを表示する。次にやりたいことはアイテムの絞り込み、Filterです。設計者が絞り込みを行う以外にも、使用者が絞り込みを行うこともあるでしょう。だから使用者が使うであろう項目を入れつつ、楽に設計したい。

Filterの項目をドロップダウンで選択するのも一つの方法。ファストフードのメニューはバーガー、ドリンク、サイドメニューで切り替えたいでしょう。これらをボタンで配置するよりは、ドロップダウンを使いたくないですか。

ドロップダウンのItem指定は直接各方法もありますが、Distinctでデータベースから借用するのが手っとり早い。そして絞り込みをなくす方法も準備しておいた方がよい。今回の記事のポイントはココです。

Dropdownの設定
Item=Distinct(List,Category)
AllowEmptySelection=true
動作のポイントは、同じ選択肢を二回選ぶと空白になります。

Galleryの設定
Item=Filter(Table,  Or(IsBlank(Dropdown.SelectedText.Value),Category=Dropdown.SelectedText.Value))
Orの中がブランクか、選択した文字で検索したtrueのみが表示されます。ブランクの場合は必ずtrueが返ります。

たったこれだけの設定で、全選択との切り替えができてしまいます。

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?