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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
yogeshk77
Helper I
Helper I

Measure Value from Related tables not showing up

yogeshk77_0-1670242062029.png

 

Now, I need to calculated Velocity Per Day for every Area Path & every Iteration by using equation similar to - 

 

Tasks [Velocity Contributed]  / ( Capacity [Total Capacity] / Capacity [Per Day Capacity]  )

 

How do I build such a measure?

1 ACCEPTED SOLUTION

Hi @yogeshk77 
Apologies for the late reply

Please see attached file

1.png2.png

View solution in original post

8 REPLIES 8
yogeshk77
Helper I
Helper I

@tamerj1  Relationships - Both Master Tables (i.e. Area Master & Iteration Master) have Foriegn keys in both the tables (i.e. Task & Capacity)

I need this data for each Area Path AND Iteration Path combination

I will need SUM as an aggregation.

Hi @yogeshk77 
Please try

Measure1 =
SUMX (
    CROSSJOIN (
        VALUES ( 'Area Master'[Area Path] ),
        VALUES ( 'Iteration Master'[Iteration Path] )
    ),
    CALCULATE (
        DIVIDE (
            DIVIDE ( SUM ( Tasks[Velocity Contributed] ), SUM ( Capacity[Total Capacity] ) ),
            SUM ( Capacity[Per Day Capacity] )
        )
    )
)

@tamerj1 , I get below error 

yogeshk77_0-1670248182805.png

 

@yogeshk77 

One DIVIDE is missing. Double check my code 

@tamerj1  Can you please take a look at this PBI file & tell me what's wrong with the calculation of Velocity per Day measure?

Here is the file

Hi @yogeshk77 
Apologies for the late reply

Please see attached file

1.png2.png

@tamerj1 , You are awesome !! Thanks much !!!

tamerj1
Super User
Super User

Hi @yogeshk77 
What are the relationships between the tables? At which granularity do you want to perferm the calculation and which type of aggregation is required (SUM, AVERAGE, etc..)?

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.