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
cristianml
Post Prodigy
Post Prodigy

Sumarize DATES from multiple tables

Hi,

 

I need to create a calendar table based on 2 or 3 tables dates.

 

Calendar = SUMMARIZE(Actuals,Actuals[Date]) && SUMMARIZE(Backlog,Backlog[Date])
 

cristianml_0-1649444389508.png

How is the best way to do this ?

 

I also tried this :

 

Calendar_ =

VAR _ACTUALS = GROUPBY(Actuals,Actuals[Date])
VAR _BACKLOG = GROUPBY(Backlog,Backlog[Date])
RETURN
SUMMARIZECOLUMNS(_ACTUALS,_BACKLOG)

 

cristianml_0-1649447034229.png

 

 

 

 

 

1 ACCEPTED SOLUTION
cristianml
Post Prodigy
Post Prodigy

I found it !

 

Calendar = UNION(SUMMARIZECOLUMNS(Actuals[Date]),SUMMARIZECOLUMNS(Backlog[Date]))
 

cristianml_0-1649455575292.png

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @cristianml ,

Is there anything else you need help with regarding this post? If not, could you please mark your reply as Answered? It will help the others in the community find the solution easily if they face the same problem as yours. Thank you.

Best Regards

cristianml
Post Prodigy
Post Prodigy

I found it !

 

Calendar = UNION(SUMMARIZECOLUMNS(Actuals[Date]),SUMMARIZECOLUMNS(Backlog[Date]))
 

cristianml_0-1649455575292.png

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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