Hello,
i want to create an app with two Excel Sheets:
1) Contains a list of Shops
2) Contains the employees at every shop
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
shop.
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 )
Unfortunately the code did not work. Can you please tell me how to use the right code/ filter to transition to the second screen with the right
data from the selected shop and how to filter the months and years?
Thanks!