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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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..)?
Check out the November 2025 Power BI 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!
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 18 | |
| 14 | |
| 14 |