+ Reply to Thread
Results 1 to 4 of 4

Populating cell values based on cell color

Hybrid View

  1. #1
    Registered User
    Join Date
    10-04-2012
    Location
    Austin, texas
    MS-Off Ver
    Excel 2010
    Posts
    2

    Populating cell values based on cell color

    I am hoping someone can help out here....

    This may sem like an odd request

    I am trying to populate a range of cells with a specific value based on the color of the cell. For example I have a data from cell A1:Z85. If any of those cells are green I want to replace the value with a value that is in cell A105.

    Reason for the ask...I import weekly data and the data that is incomplete comes back in a green cell and i need to be able to change that

    thanks in advance

  2. #2
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 365
    Posts
    8,027

    Re: Populating cell values based on cell color

    There are different shades of green that may have been used so the color index value in this code may not be correct. You can use a simple macro to find the actual color index code used in your sheet and then replace the "43" with the value you get after running the macro. Run the first macro to get the correct color code. Replace the "B4" with any cell that is colored green. Then try the second macro to do what you were asking replacing the "43" with the correct code.
    Sub FindColorCode()
        MsgBox Range("B4").Interior.ColorIndex
    End Sub
    Sub Test()
        Application.ScreenUpdating = False
        Dim c As Range
        For Each c In Range("A1:Z85")
            If c.Interior.ColorIndex = 43 Then
                c = Range("A105")
            End If
        Next c
        Application.ScreenUpdating = True
    End Sub

  3. #3
    Registered User
    Join Date
    10-04-2012
    Location
    Austin, texas
    MS-Off Ver
    Excel 2010
    Posts
    2

    Re: Populating cell values based on cell color

    PERFECT...many thanks for the fast reply

  4. #4
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 365
    Posts
    8,027

    Re: Populating cell values based on cell color

    My pleasure.

+ 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. [SOLVED] Return cell values based on cell color
    By Surya51 in forum Excel Programming / VBA / Macros
    Replies: 20
    Last Post: 04-04-2016, 10:59 AM
  2. Replies: 8
    Last Post: 07-12-2012, 02:14 PM
  3. Replies: 7
    Last Post: 02-09-2012, 03:47 AM
  4. Auto Populating a cell based on values from another cell
    By isin1776 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 05-12-2011, 06:41 PM
  5. Format cell color based on multiple cell values
    By Zenaida in forum Excel General
    Replies: 3
    Last Post: 05-09-2006, 06:56 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