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
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Solution Authors
Top Kudoed Authors