+ Reply to Thread
Results 1 to 4 of 4

VBA Automatically Adding a Checkbox to List

Hybrid View

shelim481 VBA Automatically Adding a... 08-20-2018, 07:44 AM
davesexcel Re: VBA Automatically Adding... 08-20-2018, 08:52 AM
nigelog Re: VBA Automatically Adding... 08-20-2018, 09:08 AM
shelim481 Re: VBA Automatically Adding... 08-20-2018, 09:30 AM
  1. #1
    Forum Expert nigelog's Avatar
    Join Date
    12-14-2007
    Location
    Cork, Ireland
    MS-Off Ver
    Office 365 Windows 10
    Posts
    2,293

    Re: VBA Automatically Adding a Checkbox to List

    Public Sub Test()`
    Dim ws As Worksheet
    Set ws = Worksheets("Sheet3")
    lastRow = ws.Range("A" & Rows.Count).End(xlUp).Row + 1
    
    
    For Each cell In ws.Range("A" & lastRow).Offset(0, 1)
    With ActiveSheet.CheckBoxes.Add(cell.Left, _
         cell.Top, cell.Width, cell.Height)
         .LinkedCell = cell.Offset(, 0).Address(External:=T)
         .Caption = Range(.LinkedCell).Row
        .Value = Range(.LinkedCell).Value
        .Placement = XlPlacement.xlMoveAndSize
    End With
    ws.Range("a" & lastRow).Value = lastRow
    Next
    End Sub
    Last edited by nigelog; 08-20-2018 at 10:33 AM.

+ 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. Checkbox is true automatically
    By Sanjibghosh in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-31-2018, 10:12 AM
  2. Automatically adding names to list
    By HarleyRider in forum Excel General
    Replies: 7
    Last Post: 01-01-2018, 11:24 PM
  3. Automatically insert checkbox?
    By excelforbeginners in forum Excel General
    Replies: 0
    Last Post: 01-04-2012, 02:27 PM
  4. Deselecting A CheckBox Automatically
    By heliskier89 in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 06-17-2011, 02:22 PM
  5. Excel 2008 : Adding a list of numbers automatically
    By MaximusPrimal in forum Excel General
    Replies: 0
    Last Post: 03-07-2011, 02:40 AM
  6. Automatically adding a row to a list
    By mayerc in forum Excel General
    Replies: 1
    Last Post: 07-10-2006, 04:35 PM
  7. Need checkbox automatically in some cells of a new row
    By stuff8458 in forum Excel General
    Replies: 0
    Last Post: 11-08-2005, 05:10 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