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
mshparber
Advocate I
Advocate I

ALLEXCEPT entire table

I am trying to build a measure that removes filters from any table, except for Calendar. I try to do:

= CALCULATE([Sales Amt], ALLEXCEPT(Calendar)

but it requires specific columns. 
Maybe this should work?

=CALCULATE([Sales Amt], ALL(), VALUES(Calendar))

or does VALUES also require columns?

1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

In CALCULATE(), tables can be used as filter modifiers; thus you can author DAX formula this way,

= CALCULATE([Sales Amt], ALL(), Calendar)

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

5 REPLIES 5
CNENFRNL
Community Champion
Community Champion

In CALCULATE(), tables can be used as filter modifiers; thus you can author DAX formula this way,

= CALCULATE([Sales Amt], ALL(), Calendar)

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Thanks!

I've checked and both syntaxes work:

=CALCULATE([Sales Amt], ALL(), VALUES(Calendar))

=CALCULATE([Sales Amt], ALL(), Calendar)

So, what does the values do if used on the whole table?

When a table name is given, VALUES(tablename) returns a table with the same columns and all the rows of the table (including duplicates) with the additional blank row if present.

VALUES – DAX Guide


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but I assume your fact table and a calendar table are connected via [Date] column.

Please try the below measure.

 

new measure: =
CALCULATE (
    [Sales Amt],
    ALLEXCEPT ( 'Your fact table', 'Your fact table'[Date] )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

No, this will not work.
It is not how it works in data models in Power BI

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.