Forum Discussion
Sorting chart by not showed column without changing tooltip
Hi pboron ,
I generated a sortable version number in Power Query.
You may download my PBIX file from here.
Hope this helps.
Regards,
Marcus
Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
- pboron6 years agoFrequent Visitor
But that just sorts Version by name correctly (so that 0.10 is after 0.2, not before for example). I want to sort Version by date. There may be situations, where e.g. first there is version 0.0.1 made, then 0.1.1 and then 0.0.2 and I want to show it in this order, not 0.0.1, 0.0.2, 0.1.1
- mwegener6 years ago
Most Valuable Professional
Hi pboron ,
can you add some kind of build number (date) to your version number?
So that it becomes unique and can be sorted according to it?
Regards,
Marcus
Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support. - v-diye-msft6 years ago
Community Support
Hi pboron
Please add the measure below, and then sort the version by measure:
Measure = VAR t = SUMMARIZE ( ALLSELECTED ( 'Table' ), 'Table'[Date], 'Table'[Version],'Table'[Value],'Table'[Result] ) RETURN COUNTROWS ( FILTER ( t, ISONORAFTER ( 'Table'[Date], SELECTEDVALUE ( 'Table'[Date] ), DESC, 'Table'[Version], SELECTEDVALUE ( 'Table'[Version] ), DESC ) ) )Pbix attached.