Reading Values from another sheet

Raabi

New member
Joined
May 19, 2011
Messages
2
Reaction score
0
Points
0
Hello from Raabi

Would any geek help me in solving the following problem:

I have two Worksheets: "sheet1" and "sheet2".
In column "Value2" of the "sheet1", I need to put values from the corresponding row numbers and "event" column of the "sheet2".

I tried, in vain, a formula, in each cell of the column "Value2" of the "sheet1"; similar to the following Pseudo syntax:

Code:
=CELL("value",sheet2!$B$Row())

Please note that the two sheets are fairly large and frequently updated; and therefore just pasting the values from sheet2 is not a viable solution.

Raabi
 
Thank you so much, Roger, for your help.
Although Excel reports some error "#REF", I will try to work it out. However, further tip in this direction will be appreciated.

Regards
 
Hi

My apologies - typing in the early hours of the morning is obviously not very productive!!!
I made a complete hash of the formula.

The formula should have been

=INDEX(Sheet2!$1:$65535,MATCH(ROW(),Sheet2!$A:$A),MATCH("event",Sheet2!$1:$1,0))

but I guess you amended the formula OK, otherwise you wouldn't have got anything.

You would get #N/A errors if the number didn't exist in column A of sheet2, and a 0 if there was no value in the Event column of sheet2.

Can you attach a copy of your workbook - click Go Advanced and then use the paper clip to attach the file.
 
Back
Top