Hi! I have a problem with my browse gallery. I have two records, added a couple of search fields on the top, so the user can filter the gallery by a specific field. I used this formula:
Sort(Filter('Visitor Database',
FieldSearchTextSurname.Text in 'Visitor''s Surname',
FieldSearchTextName.Text in 'Visitor''s First Name',//,ID, Descending),
FieldSearchTextPassNo.Text in 'Pass No',
FieldSearchTextCarReg.Text in 'Car Reg',
FieldSearchTextContactName.Text in 'Contact Name'.DisplayName,
FieldSearchTextCompanyName.Text in 'Company Name'),ID,Descending)
Unfortunately it displays only one record, which has all the data filled in. It doesn't display the other record( with missing Car Reg and Pass No).
How can I change the formula, so it displays all the records in the browse gallery?
You might need something like this
Sort(
Filter(
'Visitor Database',
If(
IsBlank(FieldSearchTextSurname.Text),
true,
FieldSearchTextSurname.Text in 'Visitor''s Surname' ||
FieldSearchTextName.Text in 'Visitor''s First Name'
) ||
If(
IsBlank(FieldSearchTextPassNo.Text),
true,
FieldSearchTextPassNo.Text in 'Pass No'
) ||
If(
IsBlank(FieldSearchTextCarReg.Text),
true,
FieldSearchTextCarReg.Text in 'Car Reg'
) ||
If(
IsBlank(FieldSearchTextContactName.Text),
true,
FieldSearchTextContactName.Text in 'Contact Name'.DisplayName
) ||
If(
IsBlank(FieldSearchTextCompanyName.Text),
FieldSearchTextCompanyName.Text in 'Company Name'
)
),
ID,
Descending
)
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.