Reply
mrbajana
Helper III
Helper III
Partially syndicated - Outbound

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

 

2020-06-16_17h18_03.png

 

Thanks for your help.

 

Marco 

1 ACCEPTED SOLUTION
mahoneypat
Microsoft Employee
Microsoft Employee

Syndicated - Outbound

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


View solution in original post

1 REPLY 1
mahoneypat
Microsoft Employee
Microsoft Employee

Syndicated - Outbound

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


avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

Check out the March 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)