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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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.
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..)?
@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] )
)
)
)
Check out the November 2025 Fabric update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!