Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi ...
Is there a way to determine what the active row is immediately below the freeze pane (frozen row)? I think that there must be but I can't seem to find anything on that. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Try this MsgBox ActiveWindow.VisibleRange.Resize(1, 1).Row -- Don Guillett Microsoft MVP Excel SalesAid Software wrote in message ... Hi ... Is there a way to determine what the active row is immediately below the freeze pane (frozen row)? I think that there must be but I can't seem to find anything on that. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It appears that your method can be simplified even more...
MsgBox ActiveWindow.VisibleRange(1).Row -- Rick (MVP - Excel) "Don Guillett" wrote in message ... Try this MsgBox ActiveWindow.VisibleRange.Resize(1, 1).Row -- Don Guillett Microsoft MVP Excel SalesAid Software wrote in message ... Hi ... Is there a way to determine what the active row is immediately below the freeze pane (frozen row)? I think that there must be but I can't seem to find anything on that. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you both - I almost had it and then saw your posts.
On Sep 28, 10:39*pm, "Rick Rothstein" wrote: It appears that your method can be simplified even more... MsgBox ActiveWindow.VisibleRange(1).Row -- Rick (MVP - Excel) "Don Guillett" wrote in message ... Try this MsgBox ActiveWindow.VisibleRange.Resize(1, 1).Row -- Don Guillett Microsoft MVP Excel SalesAid Software wrote in message ... Hi ... Is there a way to determine what the active row is immediately below the freeze pane (frozen row)? I think that there must be but I can't seem to find anything on that.- Hide quoted text - - Show quoted text - |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Here is another way...
MsgBox ActiveWindow.Panes(ActiveWindow.Panes.Count).Scrol lRow This can be made "neater" if we don't insist on doing it in one line... With ActiveWindow.Panes MsgBox .Item(.Count).ScrollRow End With -- Rick (MVP - Excel) wrote in message ... Hi ... Is there a way to determine what the active row is immediately below the freeze pane (frozen row)? I think that there must be but I can't seem to find anything on that. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
freeze pane | Excel Discussion (Misc queries) | |||
freeze pane: freeze from two worksheets? | Excel Discussion (Misc queries) | |||
Freeze pane | Excel Programming | |||
Freeze pane | Excel Worksheet Functions | |||
Freeze pane | Excel Discussion (Misc queries) |