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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply

Interaction between 2 date slicers

Hi,

I have a weekly report to do with graphs using datas of a selected week, and graphs using datas between the beginning of the year and this selected week.

I made a slicer with weeks, so it's ok for graphs using datas of a selected week. But how can I do (2nd slicer with interaction ? other solution ?) to have in the same page some graphs using datas between the beginning of the year and this selected week ?

 

Thanks,

Florent

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@florentbignier , Make sure you have Week year

Year Week = [Year]*100 +[Week]
YTD= CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Year]=max('Date'[Year]) && 'Date'[Week] <= Max('Date'[Week]) ))

 

YTD=

var _max = maxx(allselected(Date),'Date'[Week])

var _maxY = maxx(allselected(Date),'Date'[Year])

return

CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Year]=_maxY && 'Date'[Week] <= _max ))

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

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@florentbignier , Make sure you have Week year

Year Week = [Year]*100 +[Week]
YTD= CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Year]=max('Date'[Year]) && 'Date'[Week] <= Max('Date'[Week]) ))

 

YTD=

var _max = maxx(allselected(Date),'Date'[Week])

var _maxY = maxx(allselected(Date),'Date'[Year])

return

CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Year]=_maxY && 'Date'[Week] <= _max ))

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

Fantastic ! Thanks a lot @amitchandak 🙂

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors