- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
CALCULATING an AVG Measure for category segment
Having a hard time calculating an AVG just for records where they share another column's value (e.g. same category).
Here's a simplification of the model:
AOV is simply Rev/Orders
Here's the measure I tried:
Category AOV= CALCULATE(SUM(Table B[Revenue]) / SUM('Table A'[Orders]), ALLEXCEPT('Table A','Table A'[Orders]))
What's strange is that it seemed to work where "Category AOV" was matching category. Then I changed a visualization and then every "Category AOV" was the same value.
Obviously there's something I'm missing about how Measures interact with filtering.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In this scenario, since you want to calculate the AOV by Category, you should put Category column in ALLEXCEPT() to have your calculation group on this column.
AOV = CALCULATE(SUM(TableB[Rev])/SUM(TableA[Orders]),ALLEXCEPT(TableA,TableA[Category]))
Regards,

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
An other way is to change the context by using this formula:
Category AOV = CALCULATE( sum('Table B'[Revenue]); ALL('Table A'[Name])) / CALCULATE( sum('Table A'[Orders]); All('Table A'[Name]) )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In this scenario, since you want to calculate the AOV by Category, you should put Category column in ALLEXCEPT() to have your calculation group on this column.
AOV = CALCULATE(SUM(TableB[Rev])/SUM(TableA[Orders]),ALLEXCEPT(TableA,TableA[Category]))
Regards,

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
07-11-2024 03:26 PM | |||
09-27-2024 05:56 AM | |||
07-22-2024 09:47 AM | |||
12-07-2023 01:37 PM | |||
08-23-2024 10:44 AM |
User | Count |
---|---|
137 | |
107 | |
85 | |
59 | |
46 |