Ranking a List - Reverse Unique Rank

  • Thread starter Thread starter Rick
  • Start date Start date
R

Rick

Greetings,

I'm looking for some VB.NET code to perform a Reverse Unique Rank on a
list of numbers. I've used the rank and countif functions in Excel
in the past and am in need of some VB code to do the same.

Any help or direction is appreciated.

Thanks!

Rick
 
I'm looking for some VB.NET code to perform a Reverse Unique Rank on a
list of numbers. I've used the rank and countif functions in Excel
in the past and am in need of some VB code to do the same.

Any help or direction is appreciated.

I haven't any idea what rank and countif functions do, but to reverse sort
an array you can use the Array.Sort method and pass in your own
IComparer class. Check out the Array.Sort method in Help for example code.

LFS
 
Back
Top