Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi Guys,
I wan't to ignore an average which is calculated in a certain metric when there is no data available for a certain year for another metric. I have this matrix:
Year | Avg1 | Avg2 |
2017 | 15 | |
2018 | 10 | 12 |
2019 | 14 | 19 |
2020 | 12 | 12 |
total | 12 | 14.5 |
For my report, I'm calculating and presenting the overall difference between avg1 and avg2. What I wan't is when no data available for a certain year for avg1, don't calculate the average for avg2 (I'm not presenting the matrix, but only the overall). 15 is now influencing the overall comparison which is wrong. How to solve this?
The measures I'm using the calculate the averages are pretty basic: sum(sales) / distinctcount(orderid)
Hi @Anonymous
You can calculate Avg2 only when Avg1 is not blank using below logic
Avg2 = IF( ISBLANK(AVG1), BLANK(),sum(sales) / distinctcount(orderid))
i was thinking the same, but not too sure it will work when it calculates at the total level. as when the year context is removed [avg1] wont be blank so 2017 will be included? just thinking I could be wrong.
cool, it is fun seeing peoples solutions on here. always learning something new.
User | Count |
---|---|
16 | |
14 | |
13 | |
12 | |
11 |
User | Count |
---|---|
19 | |
16 | |
15 | |
11 | |
9 |