Hi Community
I currently have 1 box in which i am searching in a specifc column from a datatable, however i want to add 1 more box in which i can search the values of one more column...how can i do that? is it possible?
Below is the code i am using:
SortByColumns(
Filter(
'BT Governance Summary_list2',
StartsWith(
'Project Name',
TextInput2.Text
) &&
(
Len(ComboBox1_1.Selected.Result) = 0 ||
'Sub Process'.Value = ComboBox1_1.Selected.Result
) &&
(
Len(ComboBox1.Selected.Result) = 0 ||
Tower.Value = ComboBox1.Selected.Result
) &&
(
Len(ComboBox1_2.Selected.Result) = 0 ||
'Project Status'.Value = ComboBox1_2.Selected.Result
) &&
(
Len(ComboBox1_3.Selected.Result) = 0 ||
'Project Type'.Value = ComboBox1_3.Selected.Result
)
),
"ProjectName",
Ascending
)
Please help me in adding the correct piece of formula at a correct location...
following is a screenshot of the app:

I want to add one more box that says "search by project owner" (project owner is a person type column in sharepoint)