Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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]))
Solved! Go to Solution.
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.
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!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
74 | |
73 | |
56 | |
38 | |
31 |
User | Count |
---|---|
83 | |
64 | |
63 | |
49 | |
45 |