(Disclaimer : English is not my first language)
Hi guys, I'm new on Power apps and this is my problem:
I have a sharepoint list called : List1
I have column within List1 called : Column1
Its values are from a multi choice Dropdown menu : "Choice 1" , "Choice 2", "Choice 3"
What I'm trying to do : Displaying a gallery based on List1 that is sorted in this order : Choice 1 then Choice 2 then Choice 3.
I always get an error telling me that I can't sort Column1 because "this type can't be sorted".
Sort(
Filter(
List1;
Column2=_User
);
Column1;
SortOrder.Descending
)
I'm filtering to display only the tickets regarding this _User.
Any help would be much appreciated.
Thanks