Forum Discussion
Consolidated Count
- 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] ) )
I created the two tables but am having a struggle getting to the finalized summary view my executive is looking for.
He wants to know how many devices have 1 app, how many devices have 2 apps, how many devices have 3 apps. and so on. The maximum number is 17 and I've compiled the data in excel wiht a pivot table just want it to refresh automatically in PBI from the data source directly.
Given this data:
You want this result:
To get this I took the [# of Apps] (not summarized) and the count distinct [Device] from the 'Devices' table.
- seanrm428 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.
- dramus8 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.