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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi! I have a very simple sample of data with two tables: "his_prod" and "his_prod_op". "His_prod" is linked to "his_prod_op" by a "one to many" relationship on the field "Task". In the table "his_prod" there are different "Projects" that can have several "Tasks", and each "Task" has a "Duration". The table "his_prod_op" defines the "Persons" that have participated in each "Task".
What I intend to do is to summarize the total "Duration" of the "Projects" in which a specific "Person" has participated, no matter the "Tasks" he's been in, this is:
The problem I am facing is that the moment I filter by "Person", no matter what DAX formula I use (SUM, SUMX, CALCUALTE, etc), all I get is the "Duration" of the "Task" in which that person has participated, this is (in red wrong values):
Is there any formula to calculate this "Duration" by "Job"? Thanks for the help!
Manu
Solved! Go to Solution.
Hi @manutejedor,
LivioLanzo's suggestion works great. But you can create a simpler one, without adding an extra Person table.
Total duration =
IF (
COUNTROWS ( his_prod_op ),
CALCULATE ( SUM ( his_prod[Duration] ), ALLSELECTED ( his_prod_op[Person] ) )
)
Best regards,
Yuliana Gu
Hi @manutejedor,
LivioLanzo's suggestion works great. But you can create a simpler one, without adding an extra Person table.
Total duration =
IF (
COUNTROWS ( his_prod_op ),
CALCULATE ( SUM ( his_prod[Duration] ), ALLSELECTED ( his_prod_op[Person] ) )
)
Best regards,
Yuliana Gu
Hello @manutejedor,
you can reshape your model this way where you allocated a task time to each person proportially, should be farily easy within Power query with a couple of joins
then you can add this measure:
=IF(
COUNTROWS( his_prod_op ),
CALCULATE(
SUM( his_Prod_op[Durarion Allocation] ),
ALL( Persons[Person] )
)
)
You can download the file here:
https://1drv.ms/x/s!AiiWkkwHZChHj1eypR2cbxq8ho32
Did I answer your question correctly? Mark my answer as a solution!
Proud to be a Datanaut!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 52 | |
| 45 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 108 | |
| 106 | |
| 39 | |
| 33 | |
| 25 |