Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I am trying to create a measure for the following:
It takes total Sales / Ops days = Average daily Sales
My current measure for Ops days is as follows:
By country and by month the days calculated is correct.
However when it comes to the final rollup. it becomes SG+MY+TH+PH+VN+ID.
I am trying to get (Average(SG+MY+TH+PH+VN+ID) when the filters are not active.
Solved! Go to Solution.
Hi,
Please try writing a measure like below, and replace the current one with the below.
fixed measure: =
IF (
HASONEVALUE ( 'Country table'[Country column] ),
[Your Ops Days measure],
AVERAGEX ( VALUES ( 'Country table'[Country column] ), [Your Ops Days measure] )
)
Hi,
Please try writing a measure like below, and replace the current one with the below.
fixed measure: =
IF (
HASONEVALUE ( 'Country table'[Country column] ),
[Your Ops Days measure],
AVERAGEX ( VALUES ( 'Country table'[Country column] ), [Your Ops Days measure] )
)
I ended up using the back syntax as i needed the filters to calculate when other filters were active too.
I used this syntax and it works 🙂 thanks!!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 60 | |
| 53 | |
| 41 | |
| 15 | |
| 13 |
| User | Count |
|---|---|
| 97 | |
| 83 | |
| 35 | |
| 29 | |
| 25 |