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 dax side. please sort me out
Output
Anonymous
Try these measures:
BrandTxn = COUNT('Table'[Brand Name])Total TXN = CALCULATE ( DISTINCTCOUNT ( 'Table'[TXN ID] ), ALLEXCEPT ( 'Table', 'Table'[User ID] ) )
8 Replies
- PaulDBrownCommunity Champion
Anonymous
Try these measures:
BrandTxn = COUNT('Table'[Brand Name])Total TXN = CALCULATE ( DISTINCTCOUNT ( 'Table'[TXN ID] ), ALLEXCEPT ( 'Table', 'Table'[User ID] ) )- AnonymousNot applicable
Hi PaulDBrown
Its working but some filters also not applied. i want when i click on that single brand name its showing only that brand name and total txn count.
But you given that measure its shwoing all userid and all values- PaulDBrownCommunity Champion
Anonymous
Do you have the interactions enabled between the slicer and the table?