Hi
I have been following Shane Young's instructions on how to use Multiple Drop Downs to filter (but using a combobox) data and I have hit a block; again.
In a SharePoint list I have two field, both Text Fields "Customer" and "Order Number"
The first stage was to create and test a search using the "Order Number", before moving on to adding a second
- "Browse Screen 1"
- OnVisible
- ClearCollect(Collect3, {Result: "All"}); Collect(Collect3, Distinct(Sales, 'Order Number'))
- BrowseGallery1
- Items
- Filter(Sales, 'Order Number'=cmbOrderSearch.Selected.Result)
When I try to add the "If" statement things stops working for the True (Sales, 'Order Number')
If(cmbOrderSearch.Selected.Result = “All”, Sales, 'Order Number', Filter(Sales, 'Order Number'=cmbOrderSearch.Selected.Result)
Any help would be appreciated
Many Thanks in advance.
BR
Andy