1) Contains a list of Shops
So there are two screens. On the first screen you select the shop and on the second screen you see all the employees at the selected shop with their data.
On the second screen there are also two filters that filter the month and year, so you can see which employee worked in which year and month at the
For filtering the selected shop on the second screen i tried the code:
Filter(
Assignments;
Month.Value = drpCurrentMonth.Selected.Value &&
Year.Value = Text(drpCurrentYear.Selected.Value) &&
Shop.Value = galShopList.Selected.Name )
Thanks!