I have a column in Excel that contains text strings (which comes from an MS Form):
| IA/Para (to address work completion) |
| Counselor (to address SEL/Wellbeing/provide resources) |
| Attendance supervisor (to address inconsistent attendance) |
| Admin (to address engagement strategies) |
I want to filter a DataTable based on those data so I have a Dropdown control (named Assistance) with Items property set to:
Distinct(Tracking, 'Asking for assistance')
I then set the Items property of the DataTable to:
Filter(Tracking, 'Asking for assistance' = Assistance.Selected.Result)
And it doesn't work. In the editor I get a syntax error which I can't seem to copy to the clipboard. And at runtime, I get no data.
I looked at the documentation and it says to use Assistance.Selected.Value, but that is not valid since I am using a Distinct. It seems like it could be something about text needed extra quotes or something, but I have tried concatenating quotes around things and that didn't help either. This should be a straightforward scenario.