View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
[email protected] jd64361@gmail.com is offline
external usenet poster
 
Posts: 18
Default check and uncheck macro

On Dec 30, 12:48*pm, Dave Peterson wrote:
I'm guessing that thecheckboxis placed on a worksheet, right?

What kind ofcheckboxdid you use? *Acheckboxfrom the Forms toolbar or acheckboxfrom the control toolbox toolbar?

If it's acheckboxfrom the Forms toolbar:

Option Explicit
Sub testme()
* * Dim RngToCopy As Range
* * Dim DestCell As Range
* * Dim CBX AsCheckBox

* * Set CBX = ActiveSheet.CheckBoxes(Application.Caller)

* * If CBX.Value = xlOn Then
* * * * Set RngToCopy = ActiveSheet.Range("a1:b3")
* * Else
* * * * Set RngToCopy = ActiveSheet.Range("x1:z3")
* * End If

* * Set DestCell = ActiveSheet.Range("d1")

* * RngToCopy.Copy _
* * * * Destination:=DestCell
End Sub

If it's acheckboxfrom the control toolbox toolbar:

Option Explicit
Private Sub CheckBox1_Change()
* * Dim RngToCopy As Range
* * Dim DestCell As Range

* * If Me.CheckBox1.Value = True Then
* * * * Set RngToCopy = Me.Range("a1:b3")
* * Else
* * * * Set RngToCopy = Me.Range("x1:z3")
* * End If

* * Set DestCell = Me.Range("d1")

* * RngToCopy.Copy _
* * * * Destination:=DestCell
End Sub

wrote:

How can i use thecheckboxto use a different macro when it's checked
or
unchecked? In this example: i want to copy *paste from one location if
is unchecked and from a different location if is check and Iuncheck
thecheckbox.
thank you
Pamela


--

Dave Peterson


Hi Dave,
Can you guide me more please.
My checkbox is number 11 in a spreadsheet, in a tab name May.

the first task is to copy c11 to c17 and paste special as a value if I
check the box, the second option is if I uncheck the box go and copy
b29 to b35 and paste it in c11 to c17.
yes is a ceck box from the developer tab under form controls.

How do I enter the code that you gave me?

Thank you!!!