Hi,
I have vb code as under
I want to add code that Selected workbook open always with Sheet1 (Sheet1 is a sheet code not Sheet Name) cell "A3"
I have vb code as under
Code:
Sub Macro2()
'
' Macro1 Macro
'
' Keyboard Shortcut: Ctrl+h
'
Dim vFile As Variant
'Showing Text Open Dialog Form
vFile = Application.GetOpenFilename("Excel Files (*.xlsx)," & _
"*.xl*", 1, "Select Excel File", "Open", False)
'If Cancel then exit
If TypeName(vFile) = "Boolean" Then
Exit Sub
End If
'Open selected file
Workbooks.Open vFile
End Sub