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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
TWMY1014
Helper I
Helper I

Create customized filter (Year) to sort bar chart in descending order

Hi Expert,

 

I have bar chart with years as fitler, like below.
I want to add another "Selected Year" filter (based on which year I select from "Year" filter, single option) and sort bar chart in descending order based on this filter. E.g. I chose Y2022, 2023, 2024 in "Year" filter, same 3 Year will appear in "Selected Year" filter, if I chose selected by Y2023, then bar chart will sort by Y2023 in descending order, but other 2 years data need keep in visual.

TWMY1014_0-1667976162124.png

Thanks a lot.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@TWMY1014 , The year needs to come from an independent date table, create a measure and add that to tool tip and use that for sorting

 

//Date1 is independent Date table, Date is joined with Table
new measure =
var _max = maxx(allselected(Date1),Date1[Year])
return
calculate( sum(Table[Value]), filter('Date', 'Date'[Year] =_max))

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@TWMY1014 , The year needs to come from an independent date table, create a measure and add that to tool tip and use that for sorting

 

//Date1 is independent Date table, Date is joined with Table
new measure =
var _max = maxx(allselected(Date1),Date1[Year])
return
calculate( sum(Table[Value]), filter('Date', 'Date'[Year] =_max))

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.