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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Highlight or Show Only specific months

Hi, I have a request from my user, they'd like to see the sales in very specific months instead of the timeline for the past 13 months.

I'm currently using this measure as a viz level filter:

 

 

13Meses - Filtro = DATEDIFF(MIN(L_Mes[FechaCalc]),TODAY(), MONTH) 

 

 

vrumay_1-1620652187412.png

 


This limits the amount of months shown in my graph to 12:

vrumay_0-1620651965940.png

I'm also using that filter to change the color of the month I want to highlight to yellow

vrumay_2-1620652236307.png

This is working as I intended, however, the user would like to see ONLY Current Month, Last December and Same Month Last Year instead of the 13 month timeline. 

How can I achieve what they want?

Thanks!

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , A measure like this should help.

 

Assuming 13 months are selected

 

calculate([measure], filter(Date, eomonth(Date[Date],0) = eomonth(today(),0) || eomonth(Date[Date],0) = eomonth(today(),-1) || eomonth(Date[Date],0) = eomonth(today(),-12)))

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , A measure like this should help.

 

Assuming 13 months are selected

 

calculate([measure], filter(Date, eomonth(Date[Date],0) = eomonth(today(),0) || eomonth(Date[Date],0) = eomonth(today(),-1) || eomonth(Date[Date],0) = eomonth(today(),-12)))

Anonymous
Not applicable

Thanks!

That worked for the most part. Is there any way in which I could include last december in there?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors