+ Reply to Thread
Results 1 to 3 of 3

Check Mark?

Hybrid View

  1. #1
    Registered User
    Join Date
    02-19-2009
    Location
    New England
    MS-Off Ver
    Excel 2003
    Posts
    1

    Check Mark?

    Hello, I wonder if anybody can help me.

    I need to format cells that the one I click on will change it's color to black or put a check mark, or cross that cell.

    How can I do it?

    Thanks,
    Last edited by geneg; 02-21-2009 at 08:47 PM.

  2. #2
    Forum Contributor
    Join Date
    04-21-2007
    Location
    Lima, Peru
    MS-Off Ver
    2000, 2007, 2010
    Posts
    674

    Re: Check Mark?

    Hi

    Paste the following code into the sheet module (right click on the tab and select 'view code')

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        
        Dim row As Long
        Dim Col As Long
        
        Cells.Interior.ColorIndex = xlNone
        
            row = Target.row
            Col = Target.Column
    
            Cells(row, Col).Interior.ColorIndex = 1
    
    End Sub
    If you wish to change the color simply change the value 1 for the interior color index to one more appropriate.

    Regards


    Jeff

  3. #3
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Check Mark?

    geneg, what has your title to do ith the question? I suggest that you actually read the Forum Rules that you agreed to

    Your post does not comply with Rule 1 of our Forum RULES. Your post title should accurately and concisely describe your problem, not your anticipated solution. Use terms appropriate to a Google search. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will be addressed according to the OP's experience in the forum: If you have less than 10 posts, expect (and respond to) a request to change your thread title. If you have 10 or more posts, expect your post to be locked, so you can start a new thread with an appropriate title.
    To change a Title on your post, click EDIT then Go Advanced and change your title, if 2 days have passed ask a moderator to do it for you.
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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