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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
PowerWhy
Helper IV
Helper IV

Adjust a cross-filter

Hi,

 

If I have a slicer of fiscal years and a table of data below, is there a way I can adjust the cross filter so that the table shows the "next year" to that selected in the slicer? (i.e. the sliced year + 1)

 

Thank you,

 

CW

1 REPLY 1
amitchandak
Super User
Super User

@PowerWhy , You need to have separate date/year table joined

 

Next Year = CALCULATE(sum('Table'[Qty]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])+1))

 

but this will not show the year on the axis , data will of the next year against the selected year; if you need the year on the axis. You need independent table for slicer

 


//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+1))

 

 

Need of an Independent Table in Power BI - Exclude: https://youtu.be/lOEW-YUrAbE

Power BI — Year on Year with or Without Time Intelligence
https://medium.com/@amitchandak.1978/power-bi-ytd-questions-time-intelligence-1-5-e3174b39f38a
https://www.youtube.com/watch?v=km41KfM_0uA

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.