+ Reply to Thread
Results 1 to 2 of 2

Change Default Cell Color (Analyst Question)

Hybrid View

Centexcel Change Default Cell Color... 03-10-2014, 01:07 PM
DarthVader68 Re: Change Default Cell Color... 03-11-2014, 12:05 AM
  1. #1
    Registered User
    Join Date
    02-20-2013
    Location
    Georgia, USA
    MS-Off Ver
    Excel 2010
    Posts
    52

    Change Default Cell Color (Analyst Question)

    Thank you for reading this post.

    I would like to change the default color of any excel sheet I use to grey from the standard white and I am struggling to find out how this is achieved.

    In other words, I am trying to have all cells in the sheets I work with appear grey on my screen by default. A coworker of mine used to work in banking and she has grey cells but does not know how she changed them.

    Thank you for your time.

  2. #2
    Registered User
    Join Date
    02-27-2014
    Location
    Range("A1")
    MS-Off Ver
    Excel 2007
    Posts
    24

    Re: Change Default Cell Color (Analyst Question)

    Quote Originally Posted by Centexcel View Post
    Thank you for reading this post.

    I would like to change the default color of any excel sheet I use to grey from the standard white and I am struggling to find out how this is achieved.

    In other words, I am trying to have all cells in the sheets I work with appear grey on my screen by default. A coworker of mine used to work in banking and she has grey cells but does not know how she changed them.

    Thank you for your time.
    Try this:
    First, press Alt+F11.
    From the Insert menu choose Module.
    In the white space in front of you paste the following code.
    Go to Excel and press Alt+F8, Then double click "ColorCellsWithGrey"
    Sub ColorCellsWithGrey()
    Application.ScreenUpdating = False
    Sn = ActiveSheet.Name
    For i = 1 To Sheets.Count
        Sheets(i).Activate
        Cells.Select
        With Selection.Interior
            .ThemeColor = xlThemeColorDark1
            .TintAndShade = -0.249977111117893
        End With
        Cells(1, 1).Select
    Next
    Sheets(Sn).Activate
    Application.ScreenUpdating = True
    End Sub
    ZAX
    I'm glad you got it to work :-D
    ZAX

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Change the ribbon color other than default
    By ramu2k06 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-04-2011, 03:56 AM
  2. Replies: 1
    Last Post: 08-07-2008, 02:41 PM
  3. [SOLVED] How do I change the default font color in Excel?
    By DaveT in forum Excel General
    Replies: 2
    Last Post: 05-31-2006, 01:55 PM
  4. change default fill color
    By Shawn in forum Excel General
    Replies: 1
    Last Post: 11-24-2005, 12:10 AM
  5. Replies: 3
    Last Post: 11-02-2005, 07:55 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1