Pulling partial data into a new worksheet

  • Thread starter Thread starter Raquel
  • Start date Start date
R

Raquel

I have a worksheet that I have grades 5-12, with numerous people in each
grade. I am trying to pull each of the grades seperately to a new worksheet
(ie. grade 5 would be tab 2, grade 6 tab 3, etc) along with each of the
people's information. When I did a vlookup, it did not transfer correctly as
there are more than one 5's to pull. How can I pull the information into
other sheets so that when I update the original sheet, it will populate the
others as well?
 
If I understand correctly, you have:

Grade Name
5 Fred
6 Sam
5 Alice
7 Ted
etc..

On each page, the following should work:

=VLOOKUP(5, Sheet1!A1:B100, 2, FALSE)

Then, on each page, just change the first argument to the grade you are
looking for.
 
That worked perfectly! Thanks!

PeteJ said:
If I understand correctly, you have:

Grade Name
5 Fred
6 Sam
5 Alice
7 Ted
etc..

On each page, the following should work:

=VLOOKUP(5, Sheet1!A1:B100, 2, FALSE)

Then, on each page, just change the first argument to the grade you are
looking for.
 
One last question - what if I want to do the same thing, but rather than
grade - use a letter or string of words like "C" (cell C2)? When I try to
enter that in, it just returns #NAME?
 
Back
Top