View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Tarburton Bob Tarburton is offline
external usenet poster
 
Posts: 10
Default Find a Cell Value

Maybe not enough information but it sounds like you want something like
=index(Sheet2!B$1:B$5001,match(your_value,Sheet2!C $1:C$5001,0))

If "your_value" is in Sheet2!C11 then the formula returns Sheet2!B11

"Gabe" wrote in message
...
Hello,

I'm just trying to find a cell value from one sheet to another. On Sheet1,
I
want say "B11" to be what I'm looking for. On Sheet2, I need it to search
through say "C1:C5001" and have it select the first one it finds. How
would I
go about doing that?

Thanks