Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ドロップダウン コントロールの行をフィルター処理するにはどうすればよいですか?
現在、Items プロパティを列にバインドしていますItems=Table1.Name が、これによりドロップダウンに可能なすべての行が入力されます。別の列が条件を満たすすべての行をフィルタリングしたいTable1.Date=Today()
Items=Table1.Name
Table1.Date=Today()
ドロップダウン コントロールのプロパティでFilter式を使用できます。Items
Filter
Items
Items: Filter(Table1, Date = Today())
また、詳細ビューを使用して、ドロップダウンに表示するテーブルのフィールドを選択できます (以下のName例では、例のように)。
Name