Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need to link to in excel file on my office intranet. The filename changes
daily when reports are run but I haven't figured out how to link to it. http://us.com/reports/production/myfile_20060430.xls This is the only file in that folder with that name, so if I can get excel to ignore the date on the end, I would be fine. All assistance is greatly appreciated. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You can use the HYPERLINK function, and craft the link inside. For example,
if 20060430 is on cell A1, using: =HYPERLINK("http://us.com/reports/production/myfile_" & A1 & ".xls") will produce a link to that file. If you always need the link for the current day, you may even use this one, without the need of an additional cell: =HYPERLINK("http://us.com/reports/production/myfile_" & YEAR(TODAY()) & TEXT(MONTH(TODAY()),"00") & TEXT(DAY(TODAY()),"00") & ".xls") Hope this helps, Miguel. "Sharky23" wrote: I need to link to in excel file on my office intranet. The filename changes daily when reports are run but I haven't figured out how to link to it. http://us.com/reports/production/myfile_20060430.xls This is the only file in that folder with that name, so if I can get excel to ignore the date on the end, I would be fine. All assistance is greatly appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
excel file lost | Excel Discussion (Misc queries) | |||
Reflecting info between an excel file and a word one or two excel file. | Excel Discussion (Misc queries) | |||
cannot open excel file, please help!!! | Excel Discussion (Misc queries) | |||
Locating a file in excel with a partial file name. | Excel Discussion (Misc queries) | |||
Locating a file in excel with a partial file name. | Excel Discussion (Misc queries) |