RankX in PowerPivot with criteria

gmazza76

Well-known Member
Joined
Mar 19, 2011
Messages
767
Office Version
  1. 365
Platform
  1. Windows
Good afternoon,

I am trying to complete a RANKX that will only rank the individual lines that are greater than zero in "Column 1", but I am getting the following results
Example 1, all columns with 0 in are showing 1 or 2 even though there are 20 lines with the same "callid", but different "date_time"
Example 2, confirms ranking from 1 to 20 based on the "date_time"

Ideally I want the lines ranked if "Column 1" is greater than 0, but I want the rank to go 1, 2, 3 etc, leaving the other rows with a Blank as a result but not increasing the rank to count the row if it has a 0

Code:
Example 1
=RANKX (FILTER (ALL ( Sheet1 ),Sheet1[callid] = EARLIER ( Sheet1[callid])  && Sheet1[Calculated Column 1] > 0 ),Sheet1[date_time],,ASC)

Example 2
=RANKX(FILTER(ALL(Sheet1),Sheet1[callid]=EARLIER(Sheet1[callid])),Sheet1[date_time],,DESC,Dense)

Hopefully that helps, thanks in advance
Gavin
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Don't you just need to exclude them from doing the calculation?

Excel Formula:
=IF([Calculated Column 1] > 0,RANKX (FILTER (ALL ( Sheet1 ),Sheet1[callid] = EARLIER ( Sheet1[callid])  && Sheet1[Calculated Column 1] > 0 ),Sheet1[date_time],,ASC),BLANK())
 
Upvote 0
Solution
thanks for this @RoryA,

It seems to give the correct output as per the code I had managed to cobble together which is great, but I have 1 quick question if you can.

I have realised I have a "user" id that I now need to add into the formula you have provided (as yours is cleaner) to only count it if the user id is different if that makes sense.
So if I have 2 users that have registered I want the earliest to be 1 and the next 2 if thats ok

Code:
mine
=if(Sheet1[Calculated Column 1]=0,BLANK(),RANKX (FILTER (ALL ( Sheet1 ),Sheet1[callid] = EARLIER ( Sheet1[callid]) && Sheet1[Calculated Column 1] <> 0 ),Sheet1[date_time],,ASC,Dense))

yours
=IF([Calculated Column 1] > 0,RANKX (FILTER (ALL ( Sheet1 ),Sheet1[callid] = EARLIER ( Sheet1[callid])  && Sheet1[Calculated Column 1] > 0 ),Sheet1[date_time],,ASC),BLANK())

thanks
 
Upvote 0
Can you post a sample showing what you want? I'm not really seeing how that wouldn't be what the current formula does anyway, since it ranks each row.
 
Upvote 0

Forum statistics

Threads
1,214,938
Messages
6,122,346
Members
449,080
Latest member
Armadillos

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top