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.
Hi all,
I have the following question.
I have trouble to multiply an average with an absolute number, I think it is because there is no link between the tables posible.
I have the following tables:
Hours per person per location
Personel nr | Location 1 | Location 2 | Location 3 |
1 | 10 | 10 | |
2 | 10 | 10 | |
3 | 10 | 10 | 10 |
Average cost per hour per person
Personel nr. | Average cost per hour |
1 | 20 |
2 | 22 |
3 | 25 |
I try to calculate the cost per location. I thought I could calculate the hours multiplied by the average costs, but it doesn't work.
There is no link from the cost per personel and the the locations.
Can someone help me?
Kind regards,
Stein
Solved! Go to Solution.
My suggestion:
Personal nr | Location | Hours |
1 | Location 1 | 10 |
1 | Location 3 | 10 |
2 | Location 1 | 10 |
Cost per Location=
SUMX('Hours per person per location',
SUM('Hours per person per location'[Hours]*RELATED('Average cost per hour per person'[Average cost per hour])
)
Give it a try.
My suggestion:
Personal nr | Location | Hours |
1 | Location 1 | 10 |
1 | Location 3 | 10 |
2 | Location 1 | 10 |
Cost per Location=
SUMX('Hours per person per location',
SUM('Hours per person per location'[Hours]*RELATED('Average cost per hour per person'[Average cost per hour])
)
Give it a try.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.