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!View all the Fabric Data Days sessions on demand. View schedule
Hello Everyone,
I try to make a chart of a classic sum and I have for the X axis Date but this date I try to have only the last date and the first date chosen in the filter date slicer.
Now I get this result :
but what I want to have as a result a chart whith juste in X axis 2020-01-01 and 2021-03-31 ! of course I don't want to use a multiple choice drop down filter
I don't know if it's possible for a chart or for a column matrix ! thank you in advance for your help ^^
Bof,
Solved! Go to Solution.
Hi @SoufTC ,
You can add a visual level filter.
First you need to create a measure.
Measure = var _max=MAXX(ALLSELECTED('Table'),[Date])
var _min=MINX(ALLSELECTED('Table'),[Date])
return
IF(_max=MAX('Table'[Date])||_min=MAX('Table'[Date]),1)
This is the stacked column chart with no visual level filter added.
When you add a visual level filter.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @SoufTC ,
You can add a visual level filter.
First you need to create a measure.
Measure = var _max=MAXX(ALLSELECTED('Table'),[Date])
var _min=MINX(ALLSELECTED('Table'),[Date])
return
IF(_max=MAX('Table'[Date])||_min=MAX('Table'[Date]),1)
This is the stacked column chart with no visual level filter added.
When you add a visual level filter.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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!