+ Reply to Thread
Results 1 to 4 of 4

Change linked cell in check box

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    12-06-2012
    Location
    sacramento,calif
    MS-Off Ver
    Excel 2010
    Posts
    217

    Change linked cell in check box

    I have this code that works perfectly to add checkboxes down a column according to the current selection of cells on the sheet. The code creates a linked cell under each check box as it inserts each one. I want to change the linked cell address so that it is on the same row as the box but in Column "AA" instead of the same column of the checkboxes. look for .LinkedCell=c.Address
    Here is the code:
    Sub AddCheckBoxes()
        On Error Resume Next
        Dim c As Range, myRange As Range
        Set myRange = Selection
        For Each c In myRange.Cells
            ActiveSheet.CheckBoxes.Add(c.Left, c.Top, c.Width, c.Height).Select
                With Selection
                    .LinkedCell = c.Address
                    .Characters.Text = ""
                    .Name = c.Address
                End With
                c.Select
                With Selection
                    .FormatConditions.Delete
                    .FormatConditions.Add Type:=xlExpression, _
                        Formula1:="=" & c.Address & "=TRUE"
                    .FormatConditions(1).Font.ColorIndex = 6 'change for other color when ticked
                    .FormatConditions(1).Interior.ColorIndex = 6 'change for other color when ticked
                    .Font.ColorIndex = 2 'cell background color = White
                End With
            Next
            myRange.Select
    End Sub
    Last edited by JJGF; 12-21-2012 at 01:46 PM.

  2. #2
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: Change linked cell in check box

    Hi JJGF,

    Please take a moment to go over the Forum rules again, and wrap your Code as per the specified requirement.
    Please consider:

    Be polite. Thank those who have helped you. Then Click on the star icon in the lower left part of the contributor's post and add Reputation. Cleaning up when you're done. If you are satisfied with the help you have received, then Please do Mark your thread [SOLVED] .

  3. #3
    Forum Contributor
    Join Date
    12-06-2012
    Location
    sacramento,calif
    MS-Off Ver
    Excel 2010
    Posts
    217

    Re: Change linked cell in check box

    I have solved it:

    Sub AddCheckBoxes()
        On Error Resume Next
        Dim c As Range, myRange As Range
        Set myRange = Selection
        For Each c In myRange.Cells
            ActiveSheet.CheckBoxes.Add(c.Left, c.Top, c.Width, c.Height).Select
                With Selection
                    .LinkedCell = "AA" & Right(c.Address, Len(c.Address) - 3)
                    .Characters.Text = ""
                    .Name = c.Address
                End With
                c.Select
                With Selection
                
                    .FormatConditions.Delete
                    .FormatConditions.Add Type:=xlExpression, _
                        Formula1:="=" & "AA" & Right(c.Address, Len(c.Address) - 3) & "=TRUE"
                    .FormatConditions(1).Font.ColorIndex = 6 'change for other color when ticked
                    .FormatConditions(1).Interior.ColorIndex = 6 'change for other color when ticked
                    .Font.ColorIndex = 2 'cell background color = White
                
                End With
                
            Next
            myRange.Select
    End Sub

  4. #4
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: Change linked cell in check box

    Hi JJGF,

    Good! Thank you for sharing it with the Forum.

+ 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