Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have columns: Date | Card Reads | City
I need to calculate the average card reads by city and compare it to a specific address. So basically when I slect an address within that city, I want the SUM(Card Reads) to populate against that city's average.
Solved! Go to Solution.
Hey @bhmiller89 ,
create a measure for the average card reads:
Average Card Reads =
CALCULATE(
AVERAGE( myTable[Card Reads] ),
ALLEXCEPT(
myTable,
myTable[City]
)
)
And then do your calculation with the sum. As far as I understood you just want to divide it:
Card Reads to Average =
DIVIDE(
SUM( myTable[Card Reads] ),
[Average Card Reads]
)
Hey @bhmiller89 ,
create a measure for the average card reads:
Average Card Reads =
CALCULATE(
AVERAGE( myTable[Card Reads] ),
ALLEXCEPT(
myTable,
myTable[City]
)
)
And then do your calculation with the sum. As far as I understood you just want to divide it:
Card Reads to Average =
DIVIDE(
SUM( myTable[Card Reads] ),
[Average Card Reads]
)
Hey @bhmiller89 ,
did it work with the measures?
I'm curious if you could solve this issue 🙂
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 |
|---|---|
| 54 | |
| 47 | |
| 38 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 83 | |
| 71 | |
| 38 | |
| 28 | |
| 25 |