Access doesn't recognize either http nor ftp protocols, so you cannot link
to the file that way.
The following code should be able to download the file for you, though, so
that you can link to it normally:
Private Declare Function URLDownloadToFile Lib "urlmon" _
Alias "URLDownloadToFileA" ( _
ByVal pCaller As Long, ByVal szURL As String, _
ByVal szFileName As String, ByVal dwReserved As Long, _
ByVal lpfnCB As Long) As Long
Function DownloadFile(URL As String, LocalFilename As String) As Boolean
On Error GoTo Err_DownloadFile
Dim lngRetVal As Long
lngRetVal = URLDownloadToFile(0, URL, LocalFilename, 0, 0)
DownloadFile = (lngRetVal = 0)
End_DownloadFile:
Exit Function
Err_DownloadFile:
MsgBox Err.Number & ": " & Err.Description & vbCrLf & _
"Occurred in DownloadFile"
Resume End_DownloadFile
End Function
You pass the URL and the full path to the location where you want to the
file stored, and the function returns True if successful or False otherwise.

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> Hello,
> I have a excel file that in on an http://east.com/Census/Master.xls but
[quoted text clipped - 8 lines]
> Thanks,
> Lime
Lime - 27 Sep 2007 03:31 GMT
Thanks...but I do not understand... where do I paste the URL?
> Access doesn't recognize either http nor ftp protocols, so you cannot link
> to the file that way.
[quoted text clipped - 41 lines]
> > Thanks,
> > Lime
Douglas J. Steele - 27 Sep 2007 22:00 GMT
You call that function, giving it the URL and the name of the file you want
to save it as.
Something like:
If DownloadFile("http://east.com/Census/Master.xls", "C:\Folder\Master.xls")
= True
' the file has been successfully download:
' you can now use TransferSpreadsheet to import form C:\Folder\Master.xls
Else
MsgBox "Something went wrong downloading the file."
End If

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> Thanks...but I do not understand... where do I paste the URL?
>
[quoted text clipped - 47 lines]
>> > Thanks,
>> > Lime
Lime - 28 Sep 2007 03:21 GMT
If downloadfile ??? I don't get it I do not see that statement in your code?
I really new to this stuff. I do understand calling the function, but the
code has got me all goofed up??
Thanks for your help
Lime
> You call that function, giving it the URL and the name of the file you want
> to save it as.
[quoted text clipped - 60 lines]
> >> > Thanks,
> >> > Lime
Douglas J. Steele - 29 Sep 2007 12:22 GMT
I gave you code for the function DownloadFile. You have to take all of the
code I gave you in that post, copy it into a new module (not a class module,
nor a module associated with a form), and make sure you don't name the
module DownloadFile when you save it (modules cannot have the same name as
routines contained in modules)

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> If downloadfile ??? I don't get it I do not see that statement in your
> code?
[quoted text clipped - 75 lines]
>> >> > Thanks,
>> >> > Lime