A Few Questions

Rookie06

New Member
Joined
Feb 19, 2017
Messages
7
Hey, just made an account here so sorry if I'm not understanding everything properly. There's a few things I'm having trouble with and wanted to see if I could get some answers. I normally use excel but I need to use Google Sheets for this because it's something I want people to be able to access and read online whenever. Anyways, I am using vlookup for the first time and understand it a little better now, but not completely. I'm using "named ranges" as a way to access the range I need more quickly.

I'm making a standings system based off a list of means. My first guess is to make a ranking system and then use vlookup to order everything automatically on another tab. First question:

If 2 people have the same average score, they're tied. I have 2 people tied for second. I would like for the ranking to list both of them, but I don't want them to have their own unique rank. I don't know how to do this without getting an error. I would simply like the spreadsheet's first 3 rows to show 1st place, 2nd place, and the different 2nd place (without listing it as 3rd, using countif)

My next issue is how to copy (fill) the cells downward when using vlookup. I would like to fill in this way:

VLOOKUP(1,namedrange,1,FALSE)
VLOOKUP(2,namedrange,1,FALSE)
VLOOKUP(3,namedrange,1,FALSE)

but I have no clue how to get only the row number to change. If I could get a solution that allows me to continue using my named range, I would heavily prefer that also.

Hope everything as explained clearly, thanks in advance.
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
... My next issue is how to copy (fill) the cells downward when using vlookup. I would like to fill in this way:

VLOOKUP(1,namedrange,1,FALSE)
VLOOKUP(2,namedrange,1,FALSE)
VLOOKUP(3,namedrange,1,FALSE)
Try drag-copying down:

=VLOOKUP(ROWS($A$1:$A1),namedrange,1,FALSE)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,394
Members
448,957
Latest member
Hat4Life

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