Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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
Has one to many relation with Child table
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 -
Can someone please help ?
Solved! Go to Solution.
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.
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.