You need to breakout your formulae into smaller chunks till they work. Then
you can combine them...
Assuming
=HYPERLINK(LEFT(CELL("Filename",A1),SEARCH("[",CELL("filename",A1))-25))&"road managers package\tour managers spreadsheet.xls"
is taking you to A1 cell of the intended sheet
then enter this in A1
=LEFT(CELL("Filename",A1),SEARCH("[",CELL("filename",A1))-25))&"road
managers package\tour managers spreadsheet.xls"
This should give you the complete path to the sheet you want
in B1 enter my formula
"R"&((MOD(ROW(),42)-1)*42+23)&"C5" to get the row/col reference in R1C1
format...
Now in C1 enter
=A1&"!"&B1 to get a complete string
in D1 enter
=Indirect(C1,False) to get the value in the target cell
If this works then put an Hyperlink around it in E1
=Hyperlink(Indirect(C1,False),"Descrption")
Once you get the hang of it then you can combine everything into one formula.
stew said:
Hi sheeloo
I am trying to use the Hyperlink in my first post with and addition to the
end that will allow me to link to that work sheet at that cell. This addition
has to do what you have done but how do I include that in the in the
hyperlink.
Thanks Stew
stew said:
i HAVE NOW TRIED THIS AND IT WILL NOT OPEN ON THE CELL
=HYPERLINK(LEFT(CELL("Filename",A1),SEARCH("[",CELL("filename",A1))-25))&"road
managers package\tour managers
spreadsheet.xls"&ADDRESS(6+42*ROW()-204,(COLUMN())-16)
this formula is in row 5
:
The fist cell i want to look at is G23 then G65
:
Hi
=HYPERLINK(LEFT(CELL("Filename",A1),SEARCH("[",CELL("filename",A1))-25))&"road managers package\tour managers spreadsheet.xls"
Gets me to tour managers spread sheet. What and how would I add to locate a
certain cell on that spread sheet using the row() ,5, that the above formula
is in. If I drag the cell down 1 I would like it to reflect a 42 row jump.
The data held in this cell repeats itself every 42 rows.
Thanks for looking
Stew