Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

DAX

I have a table,

 

Network NameOffice NameStatus
AO1C
AO1C
AO2C
AO6NC
AO3C
BO4C
BO5NC
CO7C
DO8NC

 

Now I wanted to add a new column called result which has the count of unique office in a network that has status C.

The output table should look like,

Network NameOffice NameStatusResult
AO1C3
AO1C3
AO2C3
AO6NC3
AO3C3
BO4C1
BO5NC1
CO7C1
DO8NC0

 

Please help me with this query.

  • Hey Anonymous ,

    Try :

    results = Calculate(DISTINCTCOUNT(Table[NameOffice]),
    Filter(ALL(Table),
    Table[Network] == EARLIER(Table[Network])
    &&
    Table[NameStatus] == "C"
    ))

    Best regards,

2 Replies

  • Hey Anonymous ,

    Try :

    results = Calculate(DISTINCTCOUNT(Table[NameOffice]),
    Filter(ALL(Table),
    Table[Network] == EARLIER(Table[Network])
    &&
    Table[NameStatus] == "C"
    ))

    Best regards,
    • Anonymous's avatar
      Anonymous
      Not applicable

      Perfect... Thank you