+ Reply to Thread
Results 1 to 7 of 7

In Excel, how to count a list of check boxes some are checked?

  1. #1
    M. Zak
    Guest

    In Excel, how to count a list of check boxes some are checked?

    I have a list of names/accounts, in front of each there's a check-box which
    tells if the account was completed or not (checked or cleared - false or
    true). How can I count the total of checked and/or unchecked check boxes?
    Thank you

  2. #2
    Bob Phillips
    Guest

    Re: In Excel, how to count a list of check boxes some are checked?

    Link the checkboxes to cells, and then just sum those values.

    If it is Forms checkboxes set a value of TRUE or FALSE, control toolbox
    checkboxes set a value of 1 or 0.

    --

    HTH

    Bob Phillips

    (remove nothere from the email address if mailing direct)

    "M. Zak" <M. [email protected]> wrote in message
    news:[email protected]...
    > I have a list of names/accounts, in front of each there's a check-box

    which
    > tells if the account was completed or not (checked or cleared - false or
    > true). How can I count the total of checked and/or unchecked check boxes?
    > Thank you




  3. #3
    M. Zak
    Guest

    Re: In Excel, how to count a list of check boxes some are checked?

    Thanks for answering, I had to put many check-boxes in the same sheet, so I
    just copied and pasted the first one I created, so they're all linked to the
    same cell, that's actually the issue I'm having, to link each check box to a
    different cell..."
    Thanks a lot

    "Bob Phillips" wrote:

    > Link the checkboxes to cells, and then just sum those values.
    >
    > If it is Forms checkboxes set a value of TRUE or FALSE, control toolbox
    > checkboxes set a value of 1 or 0.
    >
    > --
    >
    > HTH
    >
    > Bob Phillips
    >
    > (remove nothere from the email address if mailing direct)
    >
    > "M. Zak" <M. [email protected]> wrote in message
    > news:[email protected]...
    > > I have a list of names/accounts, in front of each there's a check-box

    > which
    > > tells if the account was completed or not (checked or cleared - false or
    > > true). How can I count the total of checked and/or unchecked check boxes?
    > > Thank you

    >
    >
    >


  4. #4
    Bob Phillips
    Guest

    Re: In Excel, how to count a list of check boxes some are checked?

    What sort of checkboxes, forms or control toolbox?


    --

    HTH

    Bob Phillips

    (remove nothere from the email address if mailing direct)

    "M. Zak" <[email protected]> wrote in message
    news:[email protected]...
    > Thanks for answering, I had to put many check-boxes in the same sheet, so

    I
    > just copied and pasted the first one I created, so they're all linked to

    the
    > same cell, that's actually the issue I'm having, to link each check box to

    a
    > different cell..."
    > Thanks a lot
    >
    > "Bob Phillips" wrote:
    >
    > > Link the checkboxes to cells, and then just sum those values.
    > >
    > > If it is Forms checkboxes set a value of TRUE or FALSE, control toolbox
    > > checkboxes set a value of 1 or 0.
    > >
    > > --
    > >
    > > HTH
    > >
    > > Bob Phillips
    > >
    > > (remove nothere from the email address if mailing direct)
    > >
    > > "M. Zak" <M. [email protected]> wrote in message
    > > news:[email protected]...
    > > > I have a list of names/accounts, in front of each there's a check-box

    > > which
    > > > tells if the account was completed or not (checked or cleared - false

    or
    > > > true). How can I count the total of checked and/or unchecked check

    boxes?
    > > > Thank you

    > >
    > >
    > >




  5. #5
    M. Zak
    Guest

    Re: In Excel, how to count a list of check boxes some are checked?

    Control toolbox

    "Bob Phillips" wrote:

    > What sort of checkboxes, forms or control toolbox?
    >
    >
    > --
    >
    > HTH
    >
    > Bob Phillips
    >
    > (remove nothere from the email address if mailing direct)
    >
    > "M. Zak" <[email protected]> wrote in message
    > news:[email protected]...
    > > Thanks for answering, I had to put many check-boxes in the same sheet, so

    > I
    > > just copied and pasted the first one I created, so they're all linked to

    > the
    > > same cell, that's actually the issue I'm having, to link each check box to

    > a
    > > different cell..."
    > > Thanks a lot
    > >
    > > "Bob Phillips" wrote:
    > >
    > > > Link the checkboxes to cells, and then just sum those values.
    > > >
    > > > If it is Forms checkboxes set a value of TRUE or FALSE, control toolbox
    > > > checkboxes set a value of 1 or 0.
    > > >
    > > > --
    > > >
    > > > HTH
    > > >
    > > > Bob Phillips
    > > >
    > > > (remove nothere from the email address if mailing direct)
    > > >
    > > > "M. Zak" <M. [email protected]> wrote in message
    > > > news:[email protected]...
    > > > > I have a list of names/accounts, in front of each there's a check-box
    > > > which
    > > > > tells if the account was completed or not (checked or cleared - false

    > or
    > > > > true). How can I count the total of checked and/or unchecked check

    > boxes?
    > > > > Thank you
    > > >
    > > >
    > > >

    >
    >
    >


  6. #6
    Bob Phillips
    Guest

    Re: In Excel, how to count a list of check boxes some are checked?

    This code will link all your CBs to cells in column M

    Sub LinkCBs()
    Dim i As Long
    Dim obj As OLEObject

    With ActiveSheet
    For Each obj In .OLEObjects
    If TypeName(obj.Object) = "CheckBox" Then
    i = i + 1
    obj.LinkedCell = "M" & i
    End If
    Next obj
    End With
    End Sub

    --

    HTH

    Bob Phillips

    (remove nothere from the email address if mailing direct)

    "M. Zak" <[email protected]> wrote in message
    news:[email protected]...
    > Control toolbox
    >
    > "Bob Phillips" wrote:
    >
    > > What sort of checkboxes, forms or control toolbox?
    > >
    > >
    > > --
    > >
    > > HTH
    > >
    > > Bob Phillips
    > >
    > > (remove nothere from the email address if mailing direct)
    > >
    > > "M. Zak" <[email protected]> wrote in message
    > > news:[email protected]...
    > > > Thanks for answering, I had to put many check-boxes in the same sheet,

    so
    > > I
    > > > just copied and pasted the first one I created, so they're all linked

    to
    > > the
    > > > same cell, that's actually the issue I'm having, to link each check

    box to
    > > a
    > > > different cell..."
    > > > Thanks a lot
    > > >
    > > > "Bob Phillips" wrote:
    > > >
    > > > > Link the checkboxes to cells, and then just sum those values.
    > > > >
    > > > > If it is Forms checkboxes set a value of TRUE or FALSE, control

    toolbox
    > > > > checkboxes set a value of 1 or 0.
    > > > >
    > > > > --
    > > > >
    > > > > HTH
    > > > >
    > > > > Bob Phillips
    > > > >
    > > > > (remove nothere from the email address if mailing direct)
    > > > >
    > > > > "M. Zak" <M. [email protected]> wrote in message
    > > > > news:[email protected]...
    > > > > > I have a list of names/accounts, in front of each there's a

    check-box
    > > > > which
    > > > > > tells if the account was completed or not (checked or cleared -

    false
    > > or
    > > > > > true). How can I count the total of checked and/or unchecked check

    > > boxes?
    > > > > > Thank you
    > > > >
    > > > >
    > > > >

    > >
    > >
    > >




  7. #7
    M. Zak
    Guest

    Re: In Excel, how to count a list of check boxes some are checked?

    Hi Bob; thanks a lot it's working, now I can count how many false and how
    many true for my checkboxes, I just didn't include the first line in my new
    sub_code:"Sub LinkCBs()" now it works..thanks again

    "Bob Phillips" wrote:

    > This code will link all your CBs to cells in column M
    >
    > Sub LinkCBs()
    > Dim i As Long
    > Dim obj As OLEObject
    >
    > With ActiveSheet
    > For Each obj In .OLEObjects
    > If TypeName(obj.Object) = "CheckBox" Then
    > i = i + 1
    > obj.LinkedCell = "M" & i
    > End If
    > Next obj
    > End With
    > End Sub
    >
    > --
    >
    > HTH
    >
    > Bob Phillips
    >
    > (remove nothere from the email address if mailing direct)
    >
    > "M. Zak" <[email protected]> wrote in message
    > news:[email protected]...
    > > Control toolbox
    > >
    > > "Bob Phillips" wrote:
    > >
    > > > What sort of checkboxes, forms or control toolbox?
    > > >
    > > >
    > > > --
    > > >
    > > > HTH
    > > >
    > > > Bob Phillips
    > > >
    > > > (remove nothere from the email address if mailing direct)
    > > >
    > > > "M. Zak" <[email protected]> wrote in message
    > > > news:[email protected]...
    > > > > Thanks for answering, I had to put many check-boxes in the same sheet,

    > so
    > > > I
    > > > > just copied and pasted the first one I created, so they're all linked

    > to
    > > > the
    > > > > same cell, that's actually the issue I'm having, to link each check

    > box to
    > > > a
    > > > > different cell..."
    > > > > Thanks a lot
    > > > >
    > > > > "Bob Phillips" wrote:
    > > > >
    > > > > > Link the checkboxes to cells, and then just sum those values.
    > > > > >
    > > > > > If it is Forms checkboxes set a value of TRUE or FALSE, control

    > toolbox
    > > > > > checkboxes set a value of 1 or 0.
    > > > > >
    > > > > > --
    > > > > >
    > > > > > HTH
    > > > > >
    > > > > > Bob Phillips
    > > > > >
    > > > > > (remove nothere from the email address if mailing direct)
    > > > > >
    > > > > > "M. Zak" <M. [email protected]> wrote in message
    > > > > > news:[email protected]...
    > > > > > > I have a list of names/accounts, in front of each there's a

    > check-box
    > > > > > which
    > > > > > > tells if the account was completed or not (checked or cleared -

    > false
    > > > or
    > > > > > > true). How can I count the total of checked and/or unchecked check
    > > > boxes?
    > > > > > > Thank you
    > > > > >
    > > > > >
    > > > > >
    > > >
    > > >
    > > >

    >
    >
    >


+ 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