Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
newpbiuser01
Helper V
Helper V

Slicer Custom Sort

Hello,

 

I need to create a custom sort based for a slicer where the values are going to be all the fruits in the dataset and also an "All Fruits" option. I need to sort the column so the "All Fruits" is always on the top and the remaining values in the column are sorted automatically in an alphabetical order. I tried creating a conditional column to assign a sort ID but that wouldn't account for any new fruits being added in the data set. So for example if "Peach" was added to the dataset in the next month, it would automatically be assigned the SortID 3 and the following fruits would move down in the list. 

Cell ValueSortID
All Fruits1
Apple2
Pear3
Orange4

 

Thank you!

 

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

You could create a table which will add new values when they appear as

New Table = 
var fruits = VALUES('Table'[Fruit])
return UNION( 
ADDCOLUMNS( fruits, "Sort order", RANKX(fruits, [Fruit], , ASC),
{ ( "All fruits", -1) }
)

View solution in original post

2 REPLIES 2
v-easonf-msft
Community Support
Community Support

Hi, @newpbiuser01 

'SortID' column is recalculated and created every time the data is refreshed.

If you want to automatically assign a Sort ID based on the time the record was added, then you have to consider adding a datetime column in your original datasoure as the basis for adding the SortID.

 

Best Regards,
Community Support Team _ Eason

johnt75
Super User
Super User

You could create a table which will add new values when they appear as

New Table = 
var fruits = VALUES('Table'[Fruit])
return UNION( 
ADDCOLUMNS( fruits, "Sort order", RANKX(fruits, [Fruit], , ASC),
{ ( "All fruits", -1) }
)

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.