Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
ponczula
Frequent Visitor

Average of other measure - is this possible?

Dear Memebrs, 

sicne couple of days I'm struggling with PBI on how to calucalte the average of another measure? 

 

Case as follows:

I do have a table with following meaures:

  1. Sales per rep
  2. Rep Count (distinct count)
  3. Business Count (distinct count - how many business given rep supports)
  4. Average of business supported by a rep

Table layoutTable layout

 

Measure are calculated as follows:

 

OUOURepRep

The only thing I want to achieve is somehow re-calcualte avrage on Manager level to show average of all averages OR sum of all distinct counts on OU level divided by sum of all reps - desired view below:

 

Desired viewDesired view

I'm totally vulenrable now - thought it's easy-peasy task but stucked with it for days... Help, please anyone!

 
1 ACCEPTED SOLUTION
ponczula
Frequent Visitor

Hello, 

thank for you help - already managed to find out the solution for my problem - works like a charm now!

 

# OU* = 
COUNTX (
    FILTER (
        SUMMARIZE (
            'DB',
            'DB'[Scenario],
            'DB'[Sales Rep Number],
            'DB'[OU Hierarchy],
            "Count OU", COUNT ( 'DB'[OU Hierarchy] ),
            "Sales Rep", SUM ( 'DB'[USD] )
        ),
        'DB'[Scenario] = "CY_ACT"
            && [Sales Rep] > 0
    ),
    [Count OU]
)

View solution in original post

3 REPLIES 3
ponczula
Frequent Visitor

Hello, 

thank for you help - already managed to find out the solution for my problem - works like a charm now!

 

# OU* = 
COUNTX (
    FILTER (
        SUMMARIZE (
            'DB',
            'DB'[Scenario],
            'DB'[Sales Rep Number],
            'DB'[OU Hierarchy],
            "Count OU", COUNT ( 'DB'[OU Hierarchy] ),
            "Sales Rep", SUM ( 'DB'[USD] )
        ),
        'DB'[Scenario] = "CY_ACT"
            && [Sales Rep] > 0
    ),
    [Count OU]
)
v-xinruzhu-msft
Community Support
Community Support

Hi @ponczula 

You can refer to the following solution.

Sample data 

vxinruzhumsft_0-1700718787881.png

Create a measure

Measure =
VAR a =
    SUMMARIZE (
        ALLSELECTED ( 'Table' ),
        [Manager],
        [Column1],
        "Average", AVERAGE ( 'Table'[Column3] )
    )
RETURN
    IF (
        ISINSCOPE ( 'Table'[Column1] ),
        CALCULATE ( AVERAGE ( 'Table'[Column3] ) ),
        AVERAGEX ( FILTER ( a, [Manager] IN VALUES ( 'Table'[Manager] ) ), [Average] )
    )

Output

vxinruzhumsft_1-1700718988763.png

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

lbendlin
Super User
Super User

You cannot measure a measure.  Instead, implement your business logic in a single measure.

 

Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot). Leave out anything not related to the issue.
If you are unsure how to do that please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.

If you want to get answers faster please refer to https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

July 2024 Power BI Update

Power BI Monthly Update - July 2024

Check out the July 2024 Power BI update to learn about new features.

July Newsletter

Fabric Community Update - July 2024

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