Hi all,
I can't wrap my head around this.... have been trying with Sort and Sortbycolumns.
I have a sharepoint list cointaining multiple columns (text, choice, lookup).
I want to be able to sort on each of the columns in my gallery by using a button that I am using as my header.
For my lookup column I am using Addcolumns and I am using a textbox to filter my gallery.
Next to sorting on column I also have a button where the user can change the order of the sort.
The order of my sort works when I have a fixed column to sort on but doesn't work when I use a dynamic column for sorting.
See code below:
Items in Gallery:
Sort(
If(
Len(txtRequestSearch.Text) = 0,
AddColumns(Task,"addAccount",Account.Value),
Filter(
AddColumns(Task,"addAccount",Account.Value),
Lower(txtRequestSearch.Text) in Title || Lower(txtRequestSearch.Text) in DeptReceive || Lower(txtRequestSearch.Text) in Status.Value || Lower(txtRequestSearch.Text) in Account.Value || Lower(txtRequestSearch.Text) in 'Request Type'
)
),
varJobColumnSort,
varJobOrderSort
)
Onselect of columnheader button (account in below case):
Set(
varJobColumnSort,
"addAccount"
)
Onselect of sorticon:
Set(
varJobOrderSort,
If(
varJobOrderSort = Descending,
Ascending,
Descending
)
)
Solved! Go to Solution.
Hi @Lennova ,
You can only use dynamic column names in SortByColumns as these utilise Text.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Hi @Lennova ,
You can only use dynamic column names in SortByColumns as these utilise Text.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
199 | |
52 | |
41 | |
39 | |
35 |
User | Count |
---|---|
263 | |
86 | |
71 | |
69 | |
66 |