Hi all,
I'm looking for a way on how to implement multiple search refiners (checkboxes).
I was already successfull in implementing one, but I fail to implement the other (3).
This is what I currently have:
If(
chb_filter_laptop.Value = false,
If(
IsEmpty(inp_search_bar),
Filter(
ITEquipment,
!IsBlank(Title),
Ascending
),
Filter(
ITEquipment,
inp_search_bar.Text in Title
)
),
If(
IsEmpty(inp_search_bar),
Filter(
ITEquipment,
!IsBlank(Title) && Category = "Laptops & PCs",
Ascending
),
Filter(
ITEquipment,
inp_search_bar.Text in Title && Category = "Laptops & PCs"
)
)
)
I am sure that there is a much more elegant way on how to do this...
Maybe someone can give me some guidance on this?