Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
AllanBerces
Post Prodigy
Post Prodigy

Sum of Daliy Progress base from Multiple Column

Hi Good day,

Can anyone pls need assistance on how can i reflect the sum of Daily Earned from table 1 to table 2  base from multiple column (Asset, Shutdown move, subcon and Project name)

AllanBerces_0-1719738127631.png

Table 1

AllanBerces_1-1719738438620.png

Table 2

AllanBerces_4-1719739521821.png

 

Final Result (Jun 28-29)

AllanBerces_3-1719739464543.png

https://drive.google.com/file/d/1uZ5saMtEsAf3OOgvFKZ-5HR6smW8tmV8/view?usp=sharing

 

Thank you

1 ACCEPTED SOLUTION

Try this calc column

Daily Earned = 
CALCULATE (
    SUM ( 'JC Daily Progress'[Daily Earned] ),
    FILTER (
        ALL ( 'JC Daily Progress' ),
        'JC Daily Progress'[Progress Date] = EARLIER ( 'TA-S-Curve'[Date Plan] )
            && 'JC Daily Progress'[SUBCON] = EARLIER ( 'TA-S-Curve'[Subcontractor] )
            && 'JC Daily Progress'[Asset] = EARLIER ( 'TA-S-Curve'[Asset] )
            && 'JC Daily Progress'[Projectname] = EARLIER ( 'TA-S-Curve'[ProjectName] )
    )
)

danextian_0-1719750517910.png

 





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

7 REPLIES 7
rajendraongole1
Super User
Super User

Hi @AllanBerces  Can you try the below measure 

 

rajendraongole1_1-1719740860835.png

 

 

DailyEarned =
CALCULATE(
    SUM('T1'[Daily Earned]),
    FILTER(
        'T1',
        'T1'[Asset] = RELATED('T2'[Asset]) &&
        'T1'[Shutdown Move] =RELATED( 'T2'[Shutdown Move] )&&
        'T1'[Subcon] = RELATED('T2'[Subcon] )
    )
)
 
if you want to compare the date plan and progress plan also we can add in above measure.
 
try it. Hope it works.

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





HI @rajendraongole1 thank you for you reply, but its not working. the two table are connected to Dimdate table.

 

Thank you

danextian
Super User
Super User

hi @AllanBerces ,

Data is inacessible:

danextian_0-1719740229932.png

 





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Hi @danextian pls refer below link

 

TA_REPORT_TEST_ver.pbix

 

Thank you

Try this calc column

Daily Earned = 
CALCULATE (
    SUM ( 'JC Daily Progress'[Daily Earned] ),
    FILTER (
        ALL ( 'JC Daily Progress' ),
        'JC Daily Progress'[Progress Date] = EARLIER ( 'TA-S-Curve'[Date Plan] )
            && 'JC Daily Progress'[SUBCON] = EARLIER ( 'TA-S-Curve'[Subcontractor] )
            && 'JC Daily Progress'[Asset] = EARLIER ( 'TA-S-Curve'[Asset] )
            && 'JC Daily Progress'[Projectname] = EARLIER ( 'TA-S-Curve'[ProjectName] )
    )
)

danextian_0-1719750517910.png

 





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Hi @danextian thank you very much, working perfectly. 

Hi please refer below link.

 

TA_REPORT_TEST_ver.pbix

 

Thank you

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors