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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
walkery
Helper I
Helper I

Measure not updating with date slicer selection

I have a measure in my table that is calculating the average deal value per office by summing the gross dollar amount by office divided by the total number of deals per office. The calculation is working well and is correct. However, I also have a date slicer on my report and when the dates are toggled the measure is not updating at all and therefore the bar chart is static. Is there a better way to accomplish my goal?

 

Measure = CALCULATE(SUM(rvw_USAOOfficeReferrals[GrossCommissionUSD]),ALLEXCEPT(rvw_USAOOfficeReferrals,rvw_USAOOfficeReferrals[OTerritory])) / CALCULATE(SUM(rvw_USAOOfficeReferrals[Count]),ALLEXCEPT(rvw_USAOOfficeReferrals, rvw_USAOOfficeReferrals[OTerritory]))
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @walkery,

 

Add your DateColumn in rvw_USAOOfficeReferrals to the ALLEXCEPT function in your DAX formula.
ALLEXCEPT removes all context filters in the table except filters that have been applied to the specified columns, so it can not filter by Dates if this column is not specified in the function.

 

Regards.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @walkery,

 

Add your DateColumn in rvw_USAOOfficeReferrals to the ALLEXCEPT function in your DAX formula.
ALLEXCEPT removes all context filters in the table except filters that have been applied to the specified columns, so it can not filter by Dates if this column is not specified in the function.

 

Regards.

@Anonymousthank you so much! that worked!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 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