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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register 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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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