Forum Discussion
carpetwotsit
8 years agoRegular Visitor
Number sorting in text filter
Hi I have a text filter which filters by graphs by store: And a graph which plots each store against a value: To stop Power BI from treating the stores as integers and summ...
- Anonymous8 years ago
Hey carpetwotsit
I would recommend creating a calculated column that converts the store number to text like:
StoreText = FORMAT(Test[Store], "####")
Then you can go to the Data tab and sort the StoreText column by Store. Then by putting StoreText in the axis of your visualization, you will have the proper functionality. Use the Store in any slicers though.
Hope this helps,
Parker
Anonymous
8 years agoNot applicable
Hey carpetwotsit
I would recommend creating a calculated column that converts the store number to text like:
StoreText = FORMAT(Test[Store], "####")
Then you can go to the Data tab and sort the StoreText column by Store. Then by putting StoreText in the axis of your visualization, you will have the proper functionality. Use the Store in any slicers though.
Hope this helps,
Parker
carpetwotsit
8 years agoRegular Visitor
Thank you, exactly what I needed!