Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
I have a two tables
Story Table
Story ID | Story Point |
101 | 5 |
102 | 8 |
103 | 2 |
104 | 13 |
Another one is a mapping of Story & Sprint Table, where one story may belong to more than one sprint
Story Sprints
Story ID | Sprint ID |
101 | 1 |
101 | 2 |
102 | 1 |
102 | 2 |
102 | 3 |
103 | 1 |
103 | 2 |
Now, I want to add a column in this Story Sprint Mapping table called "Story points", that should be derived from "Story points" value of Stories table, and divide by number of sprints it has against the respective story ID in "Story Sprints" table
For e.g. it should show something like this below ->
Story Sprints
Story ID | Sprint ID | Story Points |
101 | 1 | 2.5 |
101 | 2 | 2.5 |
102 | 1 | 2.7 |
102 | 2 | 2.7 |
102 | 3 | 2.7 |
103 | 1 | 1 |
103 | 2 | 1 |
Solved! Go to Solution.
Hi,
I assume the relationship is created like below.
Please check the below picture and the attached pbix file.
Story Points CC =
DIVIDE (
RELATED ( Story[Story Point] ),
COUNTROWS ( FILTER ( Sprint, Sprint[Story ID] = EARLIER ( Sprint[Story ID] ) ) )
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi,
I assume the relationship is created like below.
Please check the below picture and the attached pbix file.
Story Points CC =
DIVIDE (
RELATED ( Story[Story Point] ),
COUNTROWS ( FILTER ( Sprint, Sprint[Story ID] = EARLIER ( Sprint[Story ID] ) ) )
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
13 | |
11 | |
10 | |
7 | |
7 |
User | Count |
---|---|
13 | |
12 | |
12 | |
9 | |
8 |