Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

DAX Issue

Hi Everyone         Am having user wise so many brand are there in inside table . so my requirement is user wise how many transaction done it . i want total transaction(Measure). am struggled on d...
  • PaulDBrown's avatar
    5 years ago

    Anonymous 

    Try these measures:

    BrandTxn = COUNT('Table'[Brand Name])
    Total TXN =
    CALCULATE (
        DISTINCTCOUNT ( 'Table'[TXN ID] ),
        ALLEXCEPT ( 'Table', 'Table'[User ID] )
    )