#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 93
Default Vista Office Display

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Vista Office Display

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,365
Default Vista Office Display

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,365
Default Vista Office Display

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel 2000 and Vista Gerry Cornell Excel Discussion (Misc queries) 12 March 18th 07 11:56 PM
how do i display chart equations in office 2007 launa Charts and Charting in Excel 4 January 16th 07 04:08 PM
MS Office OFFLINE help does not display Mac Excel Discussion (Misc queries) 0 May 4th 06 03:29 PM
Office 2003 SP2. Bug. Can't display ClipArt. keepITcool Excel Discussion (Misc queries) 0 February 25th 06 09:59 AM
Excel on Vista functions? ashwink Excel Discussion (Misc queries) 0 September 15th 05 05:38 AM


All times are GMT +1. The time now is 01:09 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"