Forum Discussion

seanrm42's avatar
seanrm42
Frequent Visitor
8 years ago
Solved

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...
  • Zubair_Muhammad's avatar
    Zubair_Muhammad
    8 years ago

    seanrm42

     

    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] )
    )