Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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?
Thanks for any help.
C
Solved! Go to Solution.
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
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.