Hi Guys,
The filter working fine as expected. However, I would like to include the filter when user select All with additional filters below.
Current code

Hi Guys,
The filter working fine as expected. However, I would like to include the filter when user select All with additional filters below.
Current code
Hi @supermode ,
Based on what you posted, something like this
Search(
Filter(
'Customer',
'LastPurchased'.Value <> "12" &&
(
(
Dropdown_Category.Selected.Value = "All" &&
'ItemColour'.Value <> "Red"
) ||
(
Dropdown_Category.Selected.Value <> "All" &&
'Product category'.Value = Dropdown_Category.Selected.Value,
'ItemColour'.Value <> "Blue"
)
)
),
txtNameFilter.Text,
Title
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
MVP (Business Applications) Visit my blog Practical Power Apps