Hi,
I'm building a multiscreen app and trying to filter a form using a text control from a previous form control within the app and a drop down box that is populated from a choices column in SharePoint. I can get LookUp to find records based on a a single criterion, but Filter just wont work.
Here's what I'm trying
Filter('Annual Reviews','Employee Number'=DataCardValue42.Text,'Review Period'=Dropdown2.Selected.Value)
Annual Reviews is the SP List
Employee Number is a text column in the SP list
Review Period is a choice column in the SP list
This works fine;
LookUp('Annual Reviews','Employee Number'=DataCardValue42.Text)
This does not;
LookUp('Annual Reviews','Review Period'=Dropdown2.Selected.Value)
Nor does;
LookUp('Annual Reviews','Review Period'=Dropdown2.Selected)
Replacing LookUp with Filter also errors.
Thanks in advance.