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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors