Question about linking please

S

Susan

I can set a direct link to another workbook called

='[orange.xls]07-27'!$i$20

Is there a way to change it so that the 07-27 equals to whatever is entered
in cell a7, for example if 08-20 is entered it goes to workbook orange sheet
08-20

i tried

='[orange.xls]&a7'!$i$20, but that did not work

cam someone please help me

Thank you!
 
J

John C

See my response in your previous post, Question regarding Lookup.

This would allow you to enter a date into a cell, and use that date to name
the tab in the ORANGE workbook.

=INDIRECT("'[ORANGE.xls]"&TEXT(MONTH(A7),"00")&"-"&TEXT(DAY(A7),"00")&"'!$I$20")

Formula now modified to fit new criteria.

and as both Gary and I stated before, the ORANGE workbook needs to be open.
 
D

Dave Peterson

You have an active thread elsewhere.
I can set a direct link to another workbook called

='[orange.xls]07-27'!$i$20

Is there a way to change it so that the 07-27 equals to whatever is entered
in cell a7, for example if 08-20 is entered it goes to workbook orange sheet
08-20

i tried

='[orange.xls]&a7'!$i$20, but that did not work

cam someone please help me

Thank you!
 
S

Susan

that is the problem, indirect will not work for me, because the other
workbooks will be closed, that is why i was trying a direct link

John C said:
See my response in your previous post, Question regarding Lookup.

This would allow you to enter a date into a cell, and use that date to name
the tab in the ORANGE workbook.

=INDIRECT("'[ORANGE.xls]"&TEXT(MONTH(A7),"00")&"-"&TEXT(DAY(A7),"00")&"'!$I$20")

Formula now modified to fit new criteria.

and as both Gary and I stated before, the ORANGE workbook needs to be open.


--
John C


Susan said:
I can set a direct link to another workbook called

='[orange.xls]07-27'!$i$20

Is there a way to change it so that the 07-27 equals to whatever is entered
in cell a7, for example if 08-20 is entered it goes to workbook orange sheet
08-20

i tried

='[orange.xls]&a7'!$i$20, but that did not work

cam someone please help me

Thank you!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top