Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
is it there a way to determine if a column is frozen using vba?
tia, dk |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
frozen? what does that mean?
-- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "dk" wrote in message ... is it there a way to determine if a column is frozen using vba? tia, dk |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() "Bob Phillips" wrote: frozen? what does that mean? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "dk" wrote in message ... is it there a way to determine if a column is frozen using vba? tia, dk frozen panes If ActiveWindow.Panes.Count = 1 then panes are not frozen |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
And how does that relate to columns? You want if the columns are inside the
frozen area? What if part of them are? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "dk" wrote in message ... "Bob Phillips" wrote: frozen? what does that mean? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "dk" wrote in message ... is it there a way to determine if a column is frozen using vba? tia, dk frozen panes If ActiveWindow.Panes.Count = 1 then panes are not frozen |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This should get you started :
Private Function ColumnInFrozenPane(TestColumn As Long, argWnd As Window) As Boolean Dim i As Long ColumnInFrozenPane = False With argWnd If .FreezePanes = True And .Panes.Count 1 Then For i = 1 To .Panes.Count If .Panes(i).ScrollColumn 1 Then ColumnInFrozenPane = (TestColumn < .Panes(i).ScrollColumn) Exit Function End If Next End If End With End Function You can expand it to include row instead and allow for more than single column/row. NickHK "dk" wrote in message ... "Bob Phillips" wrote: frozen? what does that mean? -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "dk" wrote in message ... is it there a way to determine if a column is frozen using vba? tia, dk frozen panes If ActiveWindow.Panes.Count = 1 then panes are not frozen |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Determine a result of one column based on conditions in two column | Excel Discussion (Misc queries) | |||
I can't type in a column in excel it's frozen | Excel Worksheet Functions | |||
Determine if Value in column A exists in Column B | Excel Discussion (Misc queries) | |||
Determine Column | Excel Programming | |||
Determine start column/ end column of Merged Cell | Excel Programming |