Hi @Anonymous ,
Could you please share a bit more about the LookUp column that you mentioned? Is it a Person type column in your SP list?
Do you want to add the LookUp column as Search column within your Search function?
Based on the issue that you mentioned, I think you have something misunderstanding with the Search function. Within the Search function, you could only specify Text type column as Search column. The complex type columns (e.g. Choice, LookUp, Person, etc) could not be used as Search column within the Search function.
More details about the Search function, please check the following article:
Search function
As an alternative solution, I think the Filter function could achieve your needs. Please consider modify your formula as below:
Sort(
Filter(
EAPT_Apps,
TextSearchBox1.Text in Title || TextSearchBox1.Text in BRMSubCategory1 || TextSearchBox1.Text in BRMSubCategory2 || TextSearchBox1.Text in YourPersonColumn.DisplayName
),
Title
)
Note: I assume that the LookUp column that you mentioned is a Person type column (YourPersonColumn) in your SP List.
If the LookUp column is just a normal LookUp column, please consider modify above formula as below:
low:
Sort(
Filter(
EAPT_Apps,
TextSearchBox1.Text in Title || TextSearchBox1.Text in BRMSubCategory1 || TextSearchBox1.Text in BRMSubCategory2 || TextSearchBox1.Text in YourLookUpColumn.Value
),
Title
)
In addition, I also agree with @RandyHayes 's thought almost. You could add a new Text column to store your LookUp column value:
Sort(
Search(
AddColumns(EAPT_Apps, "TextPersonColumn", YourPersonColumn.DisplayName),
TextSearchBox1.Text,
"Title",
"BRMSubCategory1",
"BRMSubCategory2",
"TextPersonColumn"
),
Title
)
please take a try with above solution, check if the issue is solved.
Best regards,