Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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?
Solved! Go to Solution.
@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] )
)
)
)
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..)?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
13 | |
12 | |
11 | |
11 | |
8 |