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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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