Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
We having trouble with making the gridlines in Excel to come up darker on a
new PC - is there a function that we can change - it's unusable |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Vista is a MS Windows operating system.
Do you mean MS Office 12(2007)? I don't have 2007 yet but maybe this will help. Click the office icon in upper left corner, select Advanced, and dig down to Display ...worksheet, to find the grid settings. Gord Dibben MS Excel MVP On Fri, 16 Feb 2007 13:23:15 -0800, Stephanie wrote: We having trouble with making the gridlines in Excel to come up darker on a new PC - is there a function that we can change - it's unusable |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Stephanie,
In Excel 2007 click the 'Office Button' then click the [Excel Options] button near the lower right corner of the displayed information. In the Options window choose [Advanced], scroll down some and you'll find a section on "Display Options for this Worksheet" and it has the option to hide/display gridlines and to change their color! It's a per-sheet setting (not my fault!). I even tried selecting all sheets in the workbook and then changing this setting, but at that point it showed "Multiple Selected Worksheets" as the chosen sheet and none of them got changed. "Stephanie" wrote: We having trouble with making the gridlines in Excel to come up darker on a new PC - is there a function that we can change - it's unusable |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Perhaps this code will help some - it will change the gridlines on all sheets
in a workbook to color of your choice. You can experiment with the ..ColorIndex value to get one that works best on that system. You could put this code into personal.xls so it would be available for use in other workbooks in the future on that system. Sub SetGridlineColorForAllSheets() Dim anySheet As Worksheet Dim startSheet As String startSheet = ActiveSheet.Name Application.ScreenUpdating = False For Each anySheet In Worksheets anySheet.Activate ActiveWindow.GridlineColorIndex = 1 ' 1=black, 3 = red Next Sheets(startSheet).Activate Application.ScreenUpdating = True End Sub "Stephanie" wrote: We having trouble with making the gridlines in Excel to come up darker on a new PC - is there a function that we can change - it's unusable |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2000 and Vista | Excel Discussion (Misc queries) | |||
how do i display chart equations in office 2007 | Charts and Charting in Excel | |||
MS Office OFFLINE help does not display | Excel Discussion (Misc queries) | |||
Office 2003 SP2. Bug. Can't display ClipArt. | Excel Discussion (Misc queries) | |||
Excel on Vista functions? | Excel Discussion (Misc queries) |