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

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

Reply
xuxxay88
Helper I
Helper I

2019 Constant Line with 2019 Excluded From Chart

Hi,

My fact table consists of Year, Retailer ID, Total Sales. The Year is not linked to the calendar table year.

In the chart, I want to display the sales values for 2020 - 2022 and use a constant line for 2019 values.

 

I have a filter on the visual to include where year > 2019 which is preventing me from using CALCULATE([Total Sales], Fact[Year]=2019).

The problem I have is if I use REMOVEFILTERS() I then lose any filtering that is being applied on the RetailerID.

Thanks,

1 REPLY 1
amitchandak
Super User
Super User

@xuxxay88 , If these are no filters on the date the above measure should work

 

CALCULATE([Total Sales], filter(all(Fact[Year]), Fact[Year]=2019) )

 

In this case, I think you need a slicer on an independent date table

then this will work

CALCULATE([Total Sales], filter(=(Fact[Year]), Fact[Year]=2019) )

 

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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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