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

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

Reply
rsbin
Super User
Super User

Summarize Columns from two tables

Hello Folks,

Having difficulty with Summarize and/or Calculated Table.  I am trying to combine data from two tables:

1) DIM_Date_Tabular (Date Dimension Table) - Contains future dates to enable forecasting

2) HourlyStatisticsbyOperator (My Fact table)

 

 

= SUMMARIZE( FILTER( DIM_Date_Tabular, 
		         DIM_Date_Tabular[Date] <= Today() &&
		         DIM_Date_Tabular[Date] >= MIN(HourlyStatisticsByOperator[Date] )),
		         DIM_Date_Tabular[Date],
		         "WorkOrders", SUM(HourlyStatisticsByOperator[AllLiftWorkOrders] ))

 

 In my Fact Table, I have another column called "FacilityName".  I need to group my "WorkOrders" by FacilityName, so final result is as below:

DateFacilityNameWorkOrders
9/13/2021A0
9/13/2021B0
9/13/2021C0
9/13/2021D0
9/13/2021E0
9/12/2021A336
9/12/2021B316
9/12/2021C214
9/12/2021D345
9/12/2021E359
9/11/2021A123
9/11/2021B456
9/11/2021C789
9/11/2021D224
9/11/2021E315

Any assistance would be much appreciated!

 

Thanks in advance and Best Regards

2 REPLIES 2
amitchandak
Super User
Super User

@rsbin , try like

 

SUMMARIZE( HourlyStatisticsByOperator,HourlyStatisticsByOperator[FacilityName],
DIM_Date_Tabular[Date],
"WorkOrders", calculate(SUM(HourlyStatisticsByOperator[AllLiftWorkOrders] )FILTER( DIM_Date_Tabular,
DIM_Date_Tabular[Date] <= Today() &&
DIM_Date_Tabular[Date] >= MIN(HourlyStatisticsByOperator[Date] )))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hi @amitchandak,

Thanks kindly for the prompt response.  Unfortunately, doesn't quite work the way I need it to.  I am not getting today's date in the table.  I'm guessing this is due to the fact Today's Date does not exist in my Fact Table.  Any suggestions on how to alter your solution?

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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
Top Kudoed Authors