I have two Sharepoint Lists:
1. Employees - text column (Name) that lists all employees
2. Weekly Updates - has a lookup column (NameLookup) that gets information from the Name column in the Employees list
I have a ComboBox so employees can choose their name from the Employees list. I also have a dropdown box so once an employee chooses their name from the ComboBox, they can select a date from the dropdown based on the Submission Date column from the Weekly Updates list. Here's what I have:
ComboBox
Items = Sort('Employees',Name)
DropDown
Items = Sort('Weekly Updates', 'Submission Date')
Gallery Filter
I've tried several scenarios and nothing has worked. What should this look like that will populate the gallery fields - which are four columns of multiline text from the Weekly Updates (column names Accomplishments, Projects, Problems, Inform) based on the Submission Date from the Weekly Updates chosen in the dropdown?
Thank you!!!