![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: May 2002
Posts: 1
|
I need to make just 4 cells "static". My spreadsheet has hundreds of rows, and only 4 columns. In column 6, I have a color bar I use to color all the rows a particular order. It's a legend of sorts. What I need is to keep those 4 cells in column 6 viewable at all times, yet still be able to scroll the first 4 columns. Freezing the rows/columns do not work. It freezes more than just those cells, which I do not want. Please help. This is a project I'm doing for work and it's got me stumped!
MeJayne |
|
|
|
|
|
#2 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: Millbank, London, UK
Posts: 1,790
|
Quote:
[ This Message was edited by: Chris Davison on 2002-05-13 13:44 ] |
|
|
|
|
|
|
#3 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,654
|
Use the Window | New Window menu command to open an "new window" (e.g., Book1:2) onto your worksheet. Click the minimize worksheet button. Scroll and resize the new window to show only the cells you want. Position the new window so that it's visible when needed.
|
|
|
|
|
|
#4 | ||
|
MrExcel MVP
Join Date: Feb 2002
Location: Auckland, New Zealand
Posts: 4,209
|
Quote:
Camera Tool in a position where you Can freeze the rows/cols.... |
||
|
|
|
|
|
#5 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Millbank, London, UK
Posts: 1,790
|
Ivan,
well yeah, but if we were going to freeze the columns and rows for an image, we may aswell just use the column the original colours are in.... I *was* tempted though |
|
|
|
|
|
#6 |
|
Board Regular
Join Date: Feb 2002
Location: Perth Australia
Posts: 1,567
|
Hi Guys
Been experimenting trying picture (screen shot) to remain stationary whilst scrolling. I didn't succeed with scrolling but this event macro will place the picture immediately to the right of any cell you doubleclick, from where you can move it around if you want. By altering the additional numbers you can place it where you want in relation to the cell you doubleclick. Or use SelectChange and it will follow you about. Presumably if someone knows the code that determines which is the top row visible on screen it could be tied to that and remain stationary whilst scrolling ????? If anyone can do that I'd be interested to know Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) With ActiveSheet.Shapes("Picture 1") .Placement = xlFreeFloating .Top = ActiveCell.Top + 5 .Left = ActiveCell.Left + (ActiveCell.Width) + 10 End With End Sub regards Derek [ This Message was edited by: Derek on 2002-05-13 21:23 ] |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|