Hello
I have a sharepoint list with columns of different type.
Company - a text type column
Project – a text type column
NPP# - a text type column
Sales Account Manager - a person type column, which gets the user from the office group
In my power app i have a gallery who uses a sharepoint connector to grab data from the list.
the labels of my gallery are
ThisItem.Company
ThisItem.Title
ThisItem.’NPP#’
ThisItem.’Sales Account Manager’.DisplayName
I have issues when i try to search using text box
On the Items property of my gallery i have the following function. if i just use the following code it works fine –
Search(myData,SearchBar.Text,"Company","Title", “NPP_x0023)
But i need to search also by Sales Account Manager and when i try to add them it doesn't work
Search(myData,SearchBar.Text,"Company","Title", “NPP_x0023”, “Sales Account Manager.DisplayName”)
this is how i tried, what am i doing wrong? Please help me.
Thank you so much