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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
rsbin
Super User
Super User

Summarizing data from two tables

Good Afternoon,

 

This should be a fairly straightforward calculation, but I am unable to get the syntax correct.

I would like to combine punch clock data from two different tables into one Summary Table.  I have the first part working correctly which sums Total Hours worked by Employee for each date:

DailySummary = Summarize( OTStatistics, [Date], [Facility], [Employee_Code], [Employee_Name], "TotalHours", SUM( OTStatistics[Hours] ))

 My next step is to create a Calculated Column for the "Scheduled Hours" from a separate table for each row of [Date] and [Employee_Code].  I have tried a number of different ways, but just can't get the Sum for each Row Context correct.  

Pretty sure I will cringe when I see the answer.....

 

As always, your help is very much appreciated.

 

Kindest Regards to All,

 

1 ACCEPTED SOLUTION

Hi @rsbin ,

 

Are you trying add sum scheduled hours in Daily Summary table by date and  Employee? Please try the following calculated column:

 

 

Column =
VAR a = 'Daily Summary'[Date]
VAR b = 'Daily Summary'[Employee_Code]
RETURN
    CALCULATE (
        SUM ( 'Schedule'[FacilityScheduledHours] ),
        TREATAS ( ROW ( "Date", a ), 'Schedule'[Date] ),
        TREATAS ( ROW ( "Employee_Code", b ), 'Schedule'[EEcode] )
    )

 

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

View solution in original post

4 REPLIES 4
TomMartens
Super User
Super User

Hey @rsbin ,

 

please create a pbix that contains sample data but still reflects your data model. Upload the pbix to onedrive or dropbox and share the link. If you are using Excel to create the sample data, upload the Excel as well.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

@TomMartens  Hi Tom,

 

Daily Summary Table:

 

DateFacilityEmployee_CodeEmployee NameTotal Hours
6/1/2018Site 1AA01Doe, John12

 

Schedule:

EECodeLastNameFirstNameDateFacilityScheduledHours
AA01DoeJohn6/1/2018Site 18

 

For this date and this Employee, I would like to join the Scheduled Hours into the Daily Summary table.   I hope this clarifies. 

( I still need to learn how to correctly upload a sample pbix) .

Hi @rsbin ,

 

Are you trying add sum scheduled hours in Daily Summary table by date and  Employee? Please try the following calculated column:

 

 

Column =
VAR a = 'Daily Summary'[Date]
VAR b = 'Daily Summary'[Employee_Code]
RETURN
    CALCULATE (
        SUM ( 'Schedule'[FacilityScheduledHours] ),
        TREATAS ( ROW ( "Date", a ), 'Schedule'[Date] ),
        TREATAS ( ROW ( "Employee_Code", b ), 'Schedule'[EEcode] )
    )

 

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

Hello @v-deddai1-msft 

Thank you for the response.  I have done a quick test and looks like this was the solution I was looking for.

 

I have never used the TREATAS function before....will have to study this in more detail.

 

Thanks again and best regards,

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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.