how can add filter column name "delete" equals "no" in below powerapps syntax for gallery item
SortByColumns(Search(AddColumns( 'SP_List', "EmpText", 'Team Member'.DisplayName ),TextInput1.Text,"EmpText","Title"),"Modified",Descending)
Solved! Go to Solution.
Please consider changing your Formula to the following:
SortByColumns(
Search(
AddColumns(
Filter('SP_List', delete="no"),
"EmpText", 'Team Member'.DisplayName
),
TextInput1.Text, "EmpText", "Title"
),
"Modified",Descending
)
I hope this is helpful for you.
Please consider changing your Formula to the following:
SortByColumns(
Search(
AddColumns(
Filter('SP_List', delete="no"),
"EmpText", 'Team Member'.DisplayName
),
TextInput1.Text, "EmpText", "Title"
),
"Modified",Descending
)
I hope this is helpful for you.
User | Count |
---|---|
157 | |
92 | |
80 | |
74 | |
58 |
User | Count |
---|---|
196 | |
166 | |
99 | |
95 | |
79 |