Hi there. Using E02 on XP. I'm using the Name box (above
A1) and wonder if there isn't a keystroke to 'jump' into
it quickly? Thanks in advance for any help!
Hi there. Using E02 on XP. I'm using the Name box (above
A1) and wonder if there isn't a keystroke to 'jump' into
it quickly? Thanks in advance for any help!
Depends on what you use it for. If you quickly want to jump to a named
range, you can also use F5.
--
Kind Regards,
Niek Otten
Microsoft MVP - Excel
"Bonnie" <Hambrick@discussions.microsoft.com> wrote in message
news:454a01c520c2$f4137fb0$a401280a@phx.gbl...
> Hi there. Using E02 on XP. I'm using the Name box (above
> A1) and wonder if there isn't a keystroke to 'jump' into
> it quickly? Thanks in advance for any help!
I use the following macro assigned to Ctrl+Shift+N.
Public Declare Function SetFocus Lib "user32" (ByVal hwnd As
Long) As Long
Public Declare Function FindWindow Lib "user32" Alias
"FindWindowA" _
(ByVal lpClassName As String, ByVal lpWindowName As String)
As Long
Public Declare Function FindWindowEx Lib "user32" Alias
"FindWindowExA" _
(ByVal hWnd1 As Long, ByVal hWnd2 As Long, _
ByVal lpsz1 As String, ByVal lpsz2 As String) As Long
Sub SetFocusNameBox()
Dim Res As Long
Res = SetFocus( _
FindWindowEx( _
FindWindowEx( _
FindWindow("XLMAIN", Application.Caption) _
, 0, "EXCEL;", vbNullString) _
, 0, "combobox", vbNullString))
End Sub
"Bonnie" <Hambrick@discussions.microsoft.com> wrote in message
news:454a01c520c2$f4137fb0$a401280a@phx.gbl...
> Hi there. Using E02 on XP. I'm using the Name box (above
> A1) and wonder if there isn't a keystroke to 'jump' into
> it quickly? Thanks in advance for any help!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks