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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
AlexanderMeneik
Regular Visitor

Date filter not ignored despite ALL and REMOVEFILTERS

Hello, with my first question here I had bitten of a lot more that I could chew, so today I am asking about a smaller step in my DAX learning process.

 

I try to calculate a First Order Date from an Invoices table. 

 

This is my calendar DAX:

DateTable = ADDCOLUMNS(CALENDARAUTO(),
"MonthNo", MONTH([Date]),
"MonthName", FORMAT([Date],"MMMM"),
"Quarter", QUARTER([Date]),
"Year", YEAR([Date]), "Day", DAY([Date]), "WeekdayNum", WEEKDAY([Date]), "WeekdayName",FORMAT([Date],"DDDD"), "YearMonth", FORMAT([Date], "YYYY-MM"), "YearQuarter", FORMAT([Date], "YYYY-Q"))

 

So far, I have tried a few variations. At the moment, I have tried this code:

FirstOrderDate = CALCULATE(MIN('invoices_2019-2022'[Date Initiated]), 
ALL(DateTable[Date]))

 

That works fine as long as I have not selected any quarter in the slicer.

 

AlexanderMeneik_0-1706858854919.png

 

Yet, as soon as I select a YearQuarter, the results change, and I get the First Order Date in the context of the slicer, despite the ALL function.

 

AlexanderMeneik_1-1706858952013.png

 

Before, I had tried this:

 

FirstOrderDate = CALCULATE(MIN('invoices_2019-2022'[Date Initiated]), 
REMOVEFILTERS(DateTable[Date]))

 

Same result.

 

As you can probably tell, I have about a 5-year-old's underdstanding of DAX, so please explain in a simple way.

 

Thanks a lot.

1 ACCEPTED SOLUTION
AlexanderMeneik
Regular Visitor

Looks like the solution was pretty simple - I need to use REMOVEFILTERS on the whole table, not just the [Date] column:

 
FirstOrderDate = CALCULATE(MIN('invoices_2019-2022'[Date Initiated]),
REMOVEFILTERS(DateTable))

 

That did the trick.

 

View solution in original post

1 REPLY 1
AlexanderMeneik
Regular Visitor

Looks like the solution was pretty simple - I need to use REMOVEFILTERS on the whole table, not just the [Date] column:

 
FirstOrderDate = CALCULATE(MIN('invoices_2019-2022'[Date Initiated]),
REMOVEFILTERS(DateTable))

 

That did the trick.

 

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 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.