Download link: http://www.mediafire.com/?tindmxzihs9
This is a very basic version of an automatic rank-generator. You type a name and their corresponding score, and it will insert as needed.
If you wish to rank people by some number (e.g. time) where a LOWER number is better than a higher one, then you need to change one line of code in the VBA editor (Tools->Macro->Visual Basic Editor):
If insertscore <= Cells(i, 6) And Cells(i, 1) <> "" Then
should be changed to
If insertscore >= Cells(i, 6) And Cells(i, 1) <> "" Then
Other than that this should all work fine. Feel free to edit the code as you need depending on what you wish to use it for.
This is a very basic version of an automatic rank-generator. You type a name and their corresponding score, and it will insert as needed.
If you wish to rank people by some number (e.g. time) where a LOWER number is better than a higher one, then you need to change one line of code in the VBA editor (Tools->Macro->Visual Basic Editor):
If insertscore <= Cells(i, 6) And Cells(i, 1) <> "" Then
should be changed to
If insertscore >= Cells(i, 6) And Cells(i, 1) <> "" Then
Other than that this should all work fine. Feel free to edit the code as you need depending on what you wish to use it for.









Comment