Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Solved! Go to Solution.
@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 ))
@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 ))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 93 | |
| 81 | |
| 73 | |
| 46 | |
| 35 |