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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
kanielwang
Regular Visitor

FILTER fuction in CALCULATE causes ALL function not working

TotalOpenOrderAmount1 = CALCULATE	([OrderAmount]-[ShippedAmount],
				ALL(CalendarDate),
				OrderLineDetail[Status]="Open")

TotalOpenOrderAmount2 = CALCULATE	([OrderAmount]-[ShippedAmount],
				ALL(CalendarDate),
				Filter(OrderLineDetail,OrderLineDetail[Status]="Open")
				)

TotalOpenOderAmount1 can be measured as expected.

But TotalOpenOrderAmount2 is still affected by Calendar filters on the report.

Why is that? Can someone help to explain it?

2 REPLIES 2
Anonymous
Not applicable

When you use a table name in a table function, you are in fact referring to the table as it's seen in the current filter context. So, Filter( Table, ...) sees Table as it's filtered, not the whole table. Hence you filter Table which is already filtered by the other filters.

Understandable?

Remember that
calculate(
[...],
Table[Col] = "value"
)
is syntactic sugar for
calculate(
[...],
filter(
ALL ( Table[Col] ),
Table[Col] = "value"
)
)
which is very much different from
calculate(
[...],
filter(
values ( Table[Col] ),
Table[Col] = "value"
)
)
and the latter is equivalent to
calculate(
[...],
keepfilters( Table[Col] = "value" )
)

Best
Darek
AlB
Super User
Super User

hi @kanielwang 

Try this. It's the equivalent of TotalOpenOrderAmount1

 

TotalOpenOrderAmount2 = CALCULATE	([OrderAmount]-[ShippedAmount],
				ALL(CalendarDate),
				Filter(ALL(OrderLineDetail[Status]),OrderLineDetail[Status]="Open")
				)

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.