+ Reply to Thread
Results 1 to 3 of 3

Macro to tick checkbox automatically

Hybrid View

  1. #1
    PaulJ
    Guest

    Macro to tick checkbox automatically

    Hi,
    I have a spreadsheet with a macro assigned to a button, with a checkbox
    (from the control toolbar) next to this button for the user to manually tick
    when they have run the macro. Is there a way for the checkbox to be ticked
    automatically when the button is clicked?
    Thanks!

  2. #2
    Tom Ogilvy
    Guest

    Re: Macro to tick checkbox automatically

    Just add code in the macro assigned to the button

    Activesheet.CheckBox1.Value = true

    --
    Regards,
    Tom Ogilvy


    "PaulJ" <PaulJ@discussions.microsoft.com> wrote in message
    news:63CBF6A1-8B50-4D86-9D0B-F3E7C09E5504@microsoft.com...
    > Hi,
    > I have a spreadsheet with a macro assigned to a button, with a checkbox
    > (from the control toolbar) next to this button for the user to manually

    tick
    > when they have run the macro. Is there a way for the checkbox to be

    ticked
    > automatically when the button is clicked?
    > Thanks!




  3. #3
    PaulJ
    Guest

    Re: Macro to tick checkbox automatically

    Thanks Tom, I've adapted this slightly as my checkboxes aren't necessarily
    CheckBox1. I've inserted the following code into my macro and it works
    nicely:

    With ActiveSheet
    .Checkboxes.Value = True
    End With

    I wondered if anyone knows whether checkboxes can be protected? Ideally I
    would like my macro to determine whether the checkbox is ticked or not.

    Regards, Paul

    "Tom Ogilvy" wrote:

    > Just add code in the macro assigned to the button
    >
    > Activesheet.CheckBox1.Value = true
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    >
    > "PaulJ" <PaulJ@discussions.microsoft.com> wrote in message
    > news:63CBF6A1-8B50-4D86-9D0B-F3E7C09E5504@microsoft.com...
    > > Hi,
    > > I have a spreadsheet with a macro assigned to a button, with a checkbox
    > > (from the control toolbar) next to this button for the user to manually

    > tick
    > > when they have run the macro. Is there a way for the checkbox to be

    > ticked
    > > automatically when the button is clicked?
    > > Thanks!

    >
    >
    >


+ 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