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.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
194 | |
67 | |
46 | |
41 | |
22 |
User | Count |
---|---|
246 | |
120 | |
82 | |
74 | |
69 |