Freeze Panes Question

JeffK627

Active Member
Joined
Jun 22, 2005
Messages
313
I'm trying to use Freeze Panes in Excel 2007 so that ONLY the cells below and to the right of F10 will scroll. I've tried selecting cell G11 and then freezing panes, but the result is that rows 1 to 10 in columns G and beyond still scroll horizontally. Is there a way to freeze panes so that this doesn't happen?
 
3. Columns G, H, etc. need to scroll horizontally, but only from row 11 on. So I need a sort of upside-down "L" shaped area that doesn't scroll.


Not gonna' happen.

About all I can think of is to use a non-printing text box over rows 1-10. Columns would still scroll, but they'll be hidden from view.
 
Upvote 0

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Umm, you could also write a VBA to change all fonts to white on opening in that area, and then back to normal on closing. Or assign it to a button.
 
Upvote 0
from F1 to Z10
Code:
Sub Macro1()
    If Range("F1:Z10").Font.ColorIndex = 1 Then 'if it's white
    Range("F1:Z10").Font.ColorIndex = 2 'make it black
    Else
    Range("F1:Z10").Font.ColorIndex = 1 'make it white
    End If
End Sub
you could also include the interior colur if it was consistent
 
Upvote 0

Forum statistics

Threads
1,225,149
Messages
6,183,184
Members
453,151
Latest member
Lizamaison

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top