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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Abhishekkl
Frequent Visitor

Allexpect not working with date range change

Hi everyone,

 

I am trying to calculate max value for a particular group. Using below Dax

Max value= calculate(Max(value), allexpect (tb1, tb1[group]). Ideally Max value should change as per date range. But it is not working. All values are in same table. Any help appreciated.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Thanks for the reply from parry2k, please allow me to provide another insight.

Hi @Abhishekkl ,

 

Below is a data table created based on the information you provided.

vdengllimsft_0-1740028783219.png

 

Use the following measure to calculate the maximum value for a particular group.

Max value =
CALCULATE (
    MAX ( 'Table'[value] ),
    ALLEXCEPT ( 'Table', 'Table'[Group], 'Table'[Date] ),
    ALLSELECTED ( 'Table'[Date] )
)

ALLEXCEPT ( 'Table', 'Table'[Group], 'Table'[Date] ) :

  • Remove filters from the table except for the 'Group' and 'Date' fields.

ALLSELECTED ( 'Table'[Date] )

  • Removes the filters from the 'Date' field in the visual. Keep filters from external 'Date' field, such as slicers created by 'Date' field.

 

The final result is shown below.

vdengllimsft_2-1740029785883.pngvdengllimsft_3-1740029848247.png

When the range of the external 'Date' field changes, the measure will change with it.
But it will not be filtered by the 'Date' field that is in the same visual.

 

Please see the attached pbix for reference.

 

Best Regards,
Dengliang Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Thanks for the reply from parry2k, please allow me to provide another insight.

Hi @Abhishekkl ,

 

Below is a data table created based on the information you provided.

vdengllimsft_0-1740028783219.png

 

Use the following measure to calculate the maximum value for a particular group.

Max value =
CALCULATE (
    MAX ( 'Table'[value] ),
    ALLEXCEPT ( 'Table', 'Table'[Group], 'Table'[Date] ),
    ALLSELECTED ( 'Table'[Date] )
)

ALLEXCEPT ( 'Table', 'Table'[Group], 'Table'[Date] ) :

  • Remove filters from the table except for the 'Group' and 'Date' fields.

ALLSELECTED ( 'Table'[Date] )

  • Removes the filters from the 'Date' field in the visual. Keep filters from external 'Date' field, such as slicers created by 'Date' field.

 

The final result is shown below.

vdengllimsft_2-1740029785883.pngvdengllimsft_3-1740029848247.png

When the range of the external 'Date' field changes, the measure will change with it.
But it will not be filtered by the 'Date' field that is in the same visual.

 

Please see the attached pbix for reference.

 

Best Regards,
Dengliang Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

parry2k
Super User
Super User

@Abhishekkl I think the measure is returning the value as per dax expression, it will be easier if you share some sample data with the expected output. Read this post to get your answer quickly.

https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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
Top Kudoed Authors