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

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.

Reply
jak8282
Helper III
Helper III

How do I create a calculate column based of the count of other tables

Hi,

 

I am trying to crteate a calculated table  that counts the number of interactions for a date.

 

See below....how can I create that calculated table?

 

example.PNG

 

Thanks for any help.

 

C

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @jak8282,

You can use summarize function to summary the interactions table records and manually append a custom row to summary the second table records.

NewTable =
UNION (
    SUMMARIZE ( interactions, [Type], "Count", COUNT ( interactions[Date] ) ),
    ROW ( "Type", "Call", "Count", COUNTROWS ( Cisco ) )
)

Regards,

Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @jak8282,

You can use summarize function to summary the interactions table records and manually append a custom row to summary the second table records.

NewTable =
UNION (
    SUMMARIZE ( interactions, [Type], "Count", COUNT ( interactions[Date] ) ),
    ROW ( "Type", "Call", "Count", COUNTROWS ( Cisco ) )
)

Regards,

Xiaoxin Sheng

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.