Hi all,
I am stuck currently with a customized dropdown with the name "Responsible Partner", which I would like to be able to filter based on the employeelist which is a SharePoint List with two columns: Name and Position.
I would ideally like to filter so that ONLY people with the position "Partner / Principal" will show up.
Currently I am trying this, but it gives me red scribbles underneath the "=" sign:
Sort(Filter('Employee List SPM'.'Name ({Name})','Employee List SPM'.Position = "Partner / Principal"),Ascending)
Can anyone guide me in the right direction as to what I should do?
This is a customized dropdown (not a combobox). I have done the same thing for a LookUp column combobox, which works with the following Items Property:
Filter(
Choices('Sales Pipeline Management'.'Responsible Partner / Principal'),
Value in Filter('Employee List SPM', Position.Value = "Partner / Principal").Name
)