- 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

Total Numbers OrderID over or below average
I have a simple data set I need a mesure that counts(Distinct) by each Order ID , 1 if the sales is above the average and 0 if is below average.
Each order have many items, only I need the OrderID counts. The objective is to count how many orders are below or above the average sales in a single card or visual objetcts
Thanks for your help.
Marco
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Please try this expression patter for a measure in a card visual
Orders Above Average =
VAR __avg =
CALCULATE ( AVERAGE ( Table[Sales] ), ALLSELECTED ( Table ) )
RETURN
COUNTROWS (
FILTER ( VALUES ( Table[OrderID] ), CALCULATE ( SUM ( Table[Sales] ) ) > __avg )
)
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
Did I answer your question? Mark my post as a solution! Kudos are also appreciated!
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
@mahoneypa HoosierBI on YouTube
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Please try this expression patter for a measure in a card visual
Orders Above Average =
VAR __avg =
CALCULATE ( AVERAGE ( Table[Sales] ), ALLSELECTED ( Table ) )
RETURN
COUNTROWS (
FILTER ( VALUES ( Table[OrderID] ), CALCULATE ( SUM ( Table[Sales] ) ) > __avg )
)
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
Did I answer your question? Mark my post as a solution! Kudos are also appreciated!
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
@mahoneypa HoosierBI on YouTube

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
11-27-2024 11:40 PM | |||
01-10-2025 05:58 AM | |||
05-03-2024 03:14 AM | |||
09-10-2024 03:20 AM | |||
Anonymous
| 05-22-2024 12:40 PM |
User | Count |
---|---|
96 | |
87 | |
85 | |
52 | |
51 |