In diesem kurzen Beitrag möchte ich euch zeigen wie ihr eine Sortierung in einen Datenschnitt (Filter) Visual einbauen könnt.
In this short article I would like to show you how you can build a sort into a slicer visual.
How to do this? / Wie geht das?
Eine der meist gestellten Fragen die ich auf LinkedIN erhalte ist, wie man eine Sortierung in einen Datenschnitt bekommt. Es ist auch schwer im Netz eine passende Antwort darauf zu finden, daher dieser kurze Beitrag dazu. Im ersten Schritt erstellt ihr eine berechnete Spalte in der Tabelle in der sich eure Spalte befindet,die ihr als Filter nutzen wollt. Dazu benötigt ihr die unten stehende Formel. Im nächsten Schritt klickt ihr die Spalte die euch als Filter dienen soll auf der rechten Seiten unter Felder an. Dann geht auf den Button “Sortieren nach Spalten” und wählt die neu erstellte Spalte aus. Danach könnt ihr die Spalte in das Datenschnitt Visual einfügen und hat nun die gewünschte Sortierung.
Sales rank = RANKX(ALL(Products), SUMX(RELATEDTABLE(Orders), [Total sales]))
One of the most frequently asked questions I receive on LinkedIN is how to get a sort into a slicer. It’s also hard to find a suitable answer on the web, so this is a short post about it. The first step is to create a calculated column in the table where your column is located that you want to use as a filter. To do this, you need the formula above. In the next step, click on the column you want to use as a filter on the right-hand side under Fields. Then click on the button “Sort by column” and select the newly created column. Then you can insert the column into the slicer visual and it now has the desired sorting.
Example with TOPN Filter in combination
More Information about the DAX function RANKX: https://docs.microsoft.com/de-de/dax/rankx-function-dax
Thanks to Vartika Thakur Jha who reminds me to do a Blog post 😉