Forum Discussion
seanrm42
8 years agoFrequent Visitor
Consolidated Count
Hello fellow PBIX users. I need your help for an executive request that I know is simple but has me stumped. I have a large table which has a DeviceID and the AppID. For each App the Device h...
- 8 years ago
Try this calculated Table
New Table = SUMMARIZE ( SUMMARIZE ( TableName, TableName[Devices], "Count of Apps", COUNT ( TableName[Apps] ) ), [Count of Apps], "Count of devices", COUNT ( TableName[Devices] ) )
seanrm42
8 years agoFrequent Visitor
I think I am missing this step:
"You can then join these to the main data table."
Is this a union in DAX or a merge in the tables and if so which tables merging on what?
Sorry for all the questions but I greatly appreciate the help.
dramus
8 years agoContinued Contributor
"You can then join these to the main data table."
Is this a union in DAX or a merge in the tables and if so which tables merging on what?
I mean create relationships between your original table and the two new summary tables.