I'm trying to retrieve the value of a cell in another sheet called "Library"
Library has many Cells grouped under different categories. I made a column
(fifth column) containing row numbers (using Row() ) to be able to
determine the starting row of each category.... Then I used Vlookup to
return the row value of the category title I want (Which in this case is
Located in C7 of the current sheet).
Knowing the relative position from the category title of the Cell I want to
access (in this case 1down and 1 to the right) I'm using this formula
=Library!INDIRECT(ADDRESS(VLOOKUP(C7,Library!A2:E219,5,0)+1,2))
But it gives me an error :( ... I think its just a syntax error cause
it seems to work when I remove Library! reference, but ofcourse it means I'm
not getting it from the sheet I want!!
Any Ideaas??