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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top