@CameronTCD
I will attempt to answer both of your questions one-by-one:
1. I'm searching a SharePoint list column based on 'Office'. This means that I have multiple iterations of the same value, I would like to filter this by unique values.
You may use the following code if your Sharepoint list is less than 2,000 rows to show only the unique values as options. Put this code in the Items property of the ComboBox
Distinct(your_sharepoint_list,Office);
Otherwise, you must manually define the options for selection within Office like this
[
"Office1",
"Office2",
"Office3",
"Office4",
"Office5"
]
2. I can't seem to actually find the correct code to filter the gallery using the combo box.
Put this code in the Items property of your ComboBox. If you used DISTINCT as I suggested for your previous question the .Result selector will work. If not, you should try .Value or whatever autocomplete suggests.
Filter('Timesheet Lines',WorkOrder = ComboBox1.Selected.Result)
Let me know if you have any questions.
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."