cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
yogeshk77
Helper I
Helper I

Average of Count of Items from Relationship table

Hi,

I need to find average of Count of items that refers to one many relationship child table.

 

I have following tables & their relations

Parent Stories table

yogeshk77_0-1665139581595.png

 

Has one to many relation with Child table

yogeshk77_1-1665139644736.png

Notice How PR ID repeats for a different Stories

 

Now, I need a measure (Say "Measure Avg PR Count"), that'll give me the Average number of PRs against each Story Points, like below -

yogeshk77_2-1665139740293.png


Can someone please help ?

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

You can try the below measure

Avg num PRs =
AVERAGEX (
    VALUES ( 'Stories'[Story ID] ),
    COUNTROWS ( RELATEDTABLE ( 'PRs Stories' ) )
)

This assumes that a PR can occur in multiple stories but can only appear once per story.

Put this in a visual with the story points column and I think it should work.

View solution in original post

1 REPLY 1
johnt75
Super User
Super User

You can try the below measure

Avg num PRs =
AVERAGEX (
    VALUES ( 'Stories'[Story ID] ),
    COUNTROWS ( RELATEDTABLE ( 'PRs Stories' ) )
)

This assumes that a PR can occur in multiple stories but can only appear once per story.

Put this in a visual with the story points column and I think it should work.

Helpful resources

Announcements
Winner of T-Shirt Design

Power BI T-Shirt Design Challenge 2023

Find out who won the T-Shirt Design Challenge and the top 3 finalists.

March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.