cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
shanebo3239
Helper I
Helper I

DAX RANKX, Filter, and ALLEXCEPT Question

All,

 

I have two tables in question.  Table A is the Users table.  Table B is the transactions table.  They are related by a field called userid.  They look like this:

 

Table A:

UserId   |  UserName 

1 | John

2 | Bob

3 | Bill

 

Table B:

TransactionID  |  UserID  | TransactionType

1234 | 1 | 50

1235 | 3 | 50

1237| 1 | 50

1231 | 2 | 48

1239 |1 | 50

1242 | 3 | 50

1268 | 3 | 50

 

So, as you can see, user 1 (John) has performed 3 transactions, as has user 3 (Bill).  All of their transactions are a "type 50", which is translated in another table to the true name of the transaction type.  What I need to do is to rank them by the number of transactions they've done, but filter out anyone with 2 or less transactions.  On a large scale, I want to do rankings on employees transactions but throw out anyone with a small number from the dataset. 

 

The end result should allow me to select a user name with a slicer, then have it give me their rank for a particular transaction type.  So a slicer for username and a visual level filter for transaction type.  This would give their ranking in that particular transaction type.

 

I've played around with RankX, Filter, and ALLEXCEPT but no joy.

 

It's more complex than what I'm telling here, but if someone could point me in the right direction, I'd appreciate it.

1 ACCEPTED SOLUTION
Sean
Community Champion
Community Champion

Create a Transactions Measure

Transactions = COUNTROWS ('Table B')

Then your Rank Measure

Rank Users =
IF (
    HASONEVALUE ( 'Table A'[UserName] ),
    RANKX ( ALLSELECTED ( 'Table A'[UserName] ), [Transactions],, DESC, DENSE ),
    BLANK ()
)

Then use User Name and Rank Users in a Table Visual

drag the Transactions Measure to the Visual Level Filters ans select is greater than - type 2

 

Ranking Measure.png

View solution in original post

1 REPLY 1
Sean
Community Champion
Community Champion

Create a Transactions Measure

Transactions = COUNTROWS ('Table B')

Then your Rank Measure

Rank Users =
IF (
    HASONEVALUE ( 'Table A'[UserName] ),
    RANKX ( ALLSELECTED ( 'Table A'[UserName] ), [Transactions],, DESC, DENSE ),
    BLANK ()
)

Then use User Name and Rank Users in a Table Visual

drag the Transactions Measure to the Visual Level Filters ans select is greater than - type 2

 

Ranking Measure.png

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors