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

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.

Reply
gabrielmission7
Frequent Visitor

Line and Clustered Column Chart Conditional Filter on X-axis

Hello! I'm using Line and Clustered Column Chart, and am struggling to display blue bars from Jan to Dec (ie. all bars) but only show red line until April (ie. Jan to Apr) and nothing beyond April. Is there a way to do such conditional filter? Thanks!

 

gabrielmission7_0-1715968856718.png

 

1 REPLY 1
sevenhills
Super User
Super User

Without knowing the details of DAX and sample data, data model, it is tough to answer.

 

One best guess is add a new measure to cut off at April or modify the existing measure:

 

Just giving an idea of the measure to filter up to previous month:

 

Calculate (Sum('Table'[Amount]), FILTER('Table',MONTH('Table'[date]) < MONTH(now())))

 

 

If need to hard code, then replace MONTH(now()) as 4.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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