New to using powerapps and run into the below issue with a simple app.. The app is pulling information from Excel sheet which contains account numbers and details.. The idea is to use it to search specific numbers then see the relevant info. The issue i have is searching the account number... I have the column and it pulls this as it lets me make this the main view and sort by it... However adding to the search function it fails and says it does not exist.
I have the below and it works... The moment i add AccountNumber it errors.
SortByColumns(Search([@Table1], TextSearchBox1.Text, "CompanyName","Seg_x002f_Non-Seg","Status"), "AccountNumber", If(SortDescending1, Descending, Ascending))
So below fails
SortByColumns(Search([@Table1], TextSearchBox1.Text, "CompanyName","AccountNumber","Seg_x002f_Non-Seg","Status"), "AccountNumber", If(SortDescending1, Descending, Ascending))
I cannot seem to figure out how to make this so i can search Account numbers..> This is the main thing that would be searched.
Thanks