In Cell A1 put Sheet1 or Sheet2. this formula will return the value from Cell
A1 on that sheet. What it does is allows you to build a Sheet!cell address
that you want to reference...
=indirect(A1 & "!A1")
> No... didn't know there was one. How does that work (I'll do a search in the
> meantime)
[quoted text clipped - 14 lines]
> > > How do I do this? CAN I do this, or am I just crazy? :) Any help will be
> > > appreciated.
will that work if I'm going to different cells? Meaning, I need it to go to
Nicole's sheet, search for a certain date, grab the info on that row and put
it back on the main page. I may be doing this complicatedly, but I"m trying
to make it do what a boss wants it to do *Grin* It's not possible otherwise
LOL
> In Cell A1 put Sheet1 or Sheet2. this formula will return the value from Cell
> A1 on that sheet. What it does is allows you to build a Sheet!cell address
[quoted text clipped - 20 lines]
> > > > How do I do this? CAN I do this, or am I just crazy? :) Any help will be
> > > > appreciated.
Jim Thomlinson - 20 Oct 2006 22:55 GMT
You can do a vlookup with the indirect function as the second parameter. You
will need to know which range on which sheet that you are looking at
=vlookup(something, indirect(A1 & "!" & A2), 2, false)
Where A1 contains the sheet name and A2 contains the range address to look
in...

Signature
HTH...
Jim Thomlinson
> will that work if I'm going to different cells? Meaning, I need it to go to
> Nicole's sheet, search for a certain date, grab the info on that row and put
[quoted text clipped - 26 lines]
> > > > > How do I do this? CAN I do this, or am I just crazy? :) Any help will be
> > > > > appreciated.
justvree - 20 Oct 2006 23:03 GMT
Ok, I'll try that (have to go home now *Grin*). Is there a way as well to
reference the date? For instance, if your "something" is TODAY() or
YESTERDAY() etc and make TODAY() match a cell that would have 10/20/2006 in
it?
THanks for your help BTW
> You can do a vlookup with the indirect function as the second parameter. You
> will need to know which range on which sheet that you are looking at
[quoted text clipped - 34 lines]
> > > > > > How do I do this? CAN I do this, or am I just crazy? :) Any help will be
> > > > > > appreciated.
Jim Thomlinson - 20 Oct 2006 23:15 GMT
You could do that...it will work the same as any other Vlookup except that it
allows you to build the range that you want to look in. The only caution that
I would give you is that this function will ahve a lot of overhead associated
with it. It is a volatile function which means it will recalc every time
there is a calc and vlookups are relatively slow. you would not want
thousands of these formulas...

Signature
HTH...
Jim Thomlinson
> Ok, I'll try that (have to go home now *Grin*). Is there a way as well to
> reference the date? For instance, if your "something" is TODAY() or
[quoted text clipped - 41 lines]
> > > > > > > How do I do this? CAN I do this, or am I just crazy? :) Any help will be
> > > > > > > appreciated.