Forum Discussion
Anonymous
5 years agoNot applicable
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...
- 5 years ago
Anonymous
Try these measures:
BrandTxn = COUNT('Table'[Brand Name])Total TXN = CALCULATE ( DISTINCTCOUNT ( 'Table'[TXN ID] ), ALLEXCEPT ( 'Table', 'Table'[User ID] ) )
Anonymous
5 years agoNot applicable
Hi PaulDBrown
Its working fine and when we are using the date filter range is not applicable on that total transaction count. how to make on that dax on date wise it's showing total transaction count. Interaction also fine.. so please sort me out.
PaulDBrown
5 years agoCommunity Champion
Anonymous
Please post an image of the model.