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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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