YOU CAN USE AN INPUTBOX
Sub testa()
fileToOpen = Application _
.GetOpenFilename("Excel Files (*.xls), *.xls")
If fileToOpen <> False Then
Workbooks.Open Filename:=fileToOpen
Set myRange = Application.InputBox(prompt:="Sample", Type:=8)
End If
End Sub
> Hi there,
> is there a way to open, by Excel vba code, another Excel file and naviagate
[quoted text clipped - 5 lines]
> --
> SteM
SteM - 28 Mar 2008 18:39 GMT
Thanks,
but after the open, how can i refer to a Cell of that sheet ?
--
SteM
> YOU CAN USE AN INPUTBOX
>
[quoted text clipped - 18 lines]
> > --
> > SteM
Joel - 28 Mar 2008 18:52 GMT
Look at the code. Myrange is the seelcdted cell(s).
> Thanks,
> but after the open, how can i refer to a Cell of that sheet ?
[quoted text clipped - 25 lines]
> > > --
> > > SteM