THANKS DEBRA!!! That's EXACTLY what I was looking for!!!
>-----Original Message-----
>AFAIK, you can't copy a checkbox to another cell and
automatically
>change the linked cell. You could use the following code,
written by
>Dave Peterson, to create a series of checkboxes:
>
>Sub loadCBX()
>
>Dim myCell As Range
>Dim myCBX As CheckBox
>Dim wks As Worksheet
>Dim rng As Range
>
>Set wks = ActiveSheet
>
>wks.CheckBoxes.Delete 'nice for testing!
>
>Set rng = wks.Range("D10:D25")
>
>For Each myCell In rng
> With myCell
> Set myCBX = ActiveSheet.CheckBoxes.Add _
> (Top:=.Top, Width:=.Width, _
> Height:=.Height, Left:=.Left)
> End With
> With myCBX
> .Name = "cbx_" & myCell.Address(0, 0)
> .LinkedCell = myCell.Address(external:=True)
> myCell.NumberFormat = ";;;"
> 'The linked cells are underneath the checkboxes
> 'and have a numberformat of ;;; so they look blank
> .Caption = "Active"
> End With
>
>Next myCell
>
>End Sub
>
>'The linked cells are underneath the checkboxes
>'and have a numberformat of ;;; so they look blank
>--
>Debra Dalgleish
>Excel FAQ, Tips & Book List
>
http://www.contextures.com/tiptech.html>
>.
>