How can I filter by number using the textbox? I have Ticket # field on my SharePoint list and want to use my search box for this. Right now, I can only filter using the dropdown.
The Format of my textbox is TextFormat.Number.
My current formula is this:
Filter (Tracker,(Status.Value = drpStatusMyTickets.Selected.Value || drpStatusMyTickets.Selected.Value = "All") && 'Created By'.Email=User().Email)
I tried this formula but didn’t work:
Filter (Tracker,(Status.Value = drpStatusMyTickets.Selected.Value || drpStatusMyTickets.Selected.Value = "All") || (txtSearchFilterMyTickets.Text in 'Ticket #') && 'Created By'.Email=User().Email)
Been searching for the answers for days now but can't find one. Some mentioned about converting the number to text. Please help.