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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 66 | |
| 47 | |
| 41 | |
| 36 | |
| 23 |
| User | Count |
|---|---|
| 189 | |
| 124 | |
| 106 | |
| 78 | |
| 52 |