Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
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.
| User | Count |
|---|---|
| 79 | |
| 48 | |
| 37 | |
| 31 | |
| 27 |