Forum Discussion

Pzin's avatar
Pzin
New Member
3 years ago
Solved

Help a starter - Counting Probelm

Hello Pros:),   i just started with PowerBI i have my fair share of Failure during the last month. There is one result i would like to achieve which just won't work... I m gonna break it down to...
  • ahmedoye's avatar
    3 years ago
    Try the approach below. If it works for you, kindly mark this as a solution so anyone with similar issues can easily find it.

    Measure =
    SUMX(
             ALL(CustomersData[Customer]),
                    CALCULATE(
                                        DISTINCTCOUNT(CustomersData[Date])
                                     )
                                     )