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] ) )
Yggdrasill
8 years agoResponsive Resident
SummarizedTable = SUMMARIZE( Table1 ;
Table1[DeviceID];
"#ofDev" ; DISTINCTCOUNT( Table1[DeviceID] ) ;
"#ofApps" ; COUNTROWS( Table1 )
) Then create a group from "#ofApps" and size of the bin is just 1
seanrm42
8 years agoFrequent Visitor
Which of the new tables (Apps or Devices) does 'Table 1' represent in your formula?
When I created your formula I got 3 columns instead of 1.
- Yggdrasill8 years agoResponsive ResidentTable 1 is exactly like your example and you should have 3 columns
- Zubair_Muhammad8 years agoCommunity Champion
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] ) )- Zubair_Muhammad8 years agoCommunity Champion