Dropdown should display few values first and rest should sorted by ASC or DESC

0
The dropdown should display a few values first and the rest should be sorted by ASC or DESC   I have dropdown which as value1, value2,value3,value4, value5,value6, value7,value8,value9,value10. I need to be sorted as like following: Value9 Value8 Value10 Value1 value5 Value2 value3 value4 value6 value7
asked
2 answers
2

You can populate the dropdown using a microflow as datasource and manipulate the list in this microflow before returning.

answered
3

Hi Arun, 

As Shyerash Mentioned, Your datasource should be a microflow , first create a list add the first four items based on your requirement and then next list order the list either ASC or DESC and then add the list to your mainlist

answered