+ Reply to Thread
Results 1 to 3 of 3

How do I set up a check mark column?

  1. #1
    Registered User
    Join Date
    01-18-2006
    Posts
    2

    How do I set up a check mark column?

    A little redundant but maybe someone can help me a little further. I am trying to write an excel spread sheet to order products for jobs that I send my employees out on. For example, I own an air conditioning company and we use thousands of products for lots of different jobs. I want to put something together so that I can just go onto my computer and put a check mark next to the product that I'd like to order. The tricky part is that I only want the items with a checkmark to print out. So I basically want the spread sheet to thin down to a few pages max versus listing all of the stuff that I am not ordering for the particular job. For example...below I will use a capital letter to show each column. And I will use an X in place of a check mark. Column A will represent the check mark which I do not know how to set up in excel either. Column B will be the item description, and column C-the quantity.


    A B C

    X 3" Elbow 6
    4" Elbow
    X 5" Elbow 4
    X 6" Elbow 2
    7" Elbow
    8" Elbow
    X 9" Elbow 5


    Now, how do I set up column A to just use the mouse to be able to put a check mark, and then only print the 3", 5", 6", and 9" and not print the rest that do not have a check mark next to it. Do I need to save it as a web page or something. I've noticed how on web pages you can go in and click a check mark into certain boxes. Is that even possible to set something like this up in excel. Any detailed information would be very helpful!

    Sam

  2. #2
    Beege
    Guest

    Re: How do I set up a check mark column?

    sambles,

    You can use the Data/Autofilter on your X column to effectively hide the
    non-X parts...

    Beege


    "sambles28" <[email protected]> wrote
    in message news:[email protected]...
    >
    > A little redundant but maybe someone can help me a little further. I am
    > trying to write an excel spread sheet to order products for jobs that I
    > send my employees out on. For example, I own an air conditioning
    > company and we use thousands of products for lots of different jobs. I
    > want to put something together so that I can just go onto my computer
    > and put a check mark next to the product that I'd like to order. The
    > tricky part is that I only want the items with a checkmark to print
    > out. So I basically want the spread sheet to thin down to a few pages
    > max versus listing all of the stuff that I am not ordering for the
    > particular job. For example...below I will use a capital letter to
    > show each column. And I will use an X in place of a check mark.
    > Column A will represent the check mark which I do not know how to set
    > up in excel either. Column B will be the item description, and column
    > C-the quantity.
    >
    >
    > A B C
    >
    > X 3" Elbow 6
    > 4" Elbow
    > X 5" Elbow 4
    > X 6" Elbow 2
    > 7" Elbow
    > 8" Elbow
    > X 9" Elbow 5
    >
    >
    > Now, how do I set up column A to just use the mouse to be able to put a
    > check mark, and then only print the 3", 5", 6", and 9" and not print the
    > rest that do not have a check mark next to it. Do I need to save it as
    > a web page or something. I've noticed how on web pages you can go in
    > and click a check mark into certain boxes. Is that even possible to
    > set something like this up in excel. Any detailed information would be
    > very helpful!
    >
    > Sam
    >
    >
    > --
    > sambles28
    > ------------------------------------------------------------------------
    > sambles28's Profile:
    > http://www.excelforum.com/member.php...o&userid=30606
    > View this thread: http://www.excelforum.com/showthread...hreadid=502675
    >




  3. #3
    Paul B
    Guest

    Re: How do I set up a check mark column?

    Sam, as Beege said, you can just use and x and filter on it to do what you
    want, but if you do want a check mark you could use a macro like this, it
    will put a check mark in A2:A1000 when you click in a cell in column A, it
    really puts and a in formated with the font marlett so it will look like a
    check mark, you could then filter on column A for a and only show the data
    that you want

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If Target.Cells.Count > 1 Then Exit Sub
    If Not Intersect(Target, Range("A2:A1000")) Is Nothing Then
    Target.Font.Name = "Marlett"
    If Target = vbNullString Then
    Target = "a"
    Else
    Target = vbNullString
    End If
    End If
    End Sub

    To put in this macro right click on the worksheet tab and view code, in the
    window that opens paste this code, press Alt and Q to close this window and
    go back to your workbook. If you are using excel 2000 or newer you may have
    to change the macro security settings to get the macro to run. To change the
    security settings go to tools, macro, security, security level and set it to
    medium

    To change the security settings go to tools, macro, security, security level
    and set it to medium



    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "sambles28" <[email protected]> wrote
    in message news:[email protected]...
    >
    > A little redundant but maybe someone can help me a little further. I am
    > trying to write an excel spread sheet to order products for jobs that I
    > send my employees out on. For example, I own an air conditioning
    > company and we use thousands of products for lots of different jobs. I
    > want to put something together so that I can just go onto my computer
    > and put a check mark next to the product that I'd like to order. The
    > tricky part is that I only want the items with a checkmark to print
    > out. So I basically want the spread sheet to thin down to a few pages
    > max versus listing all of the stuff that I am not ordering for the
    > particular job. For example...below I will use a capital letter to
    > show each column. And I will use an X in place of a check mark.
    > Column A will represent the check mark which I do not know how to set
    > up in excel either. Column B will be the item description, and column
    > C-the quantity.
    >
    >
    > A B C
    >
    > X 3" Elbow 6
    > 4" Elbow
    > X 5" Elbow 4
    > X 6" Elbow 2
    > 7" Elbow
    > 8" Elbow
    > X 9" Elbow 5
    >
    >
    > Now, how do I set up column A to just use the mouse to be able to put a
    > check mark, and then only print the 3", 5", 6", and 9" and not print the
    > rest that do not have a check mark next to it. Do I need to save it as
    > a web page or something. I've noticed how on web pages you can go in
    > and click a check mark into certain boxes. Is that even possible to
    > set something like this up in excel. Any detailed information would be
    > very helpful!
    >
    > Sam
    >
    >
    > --
    > sambles28
    > ------------------------------------------------------------------------
    > sambles28's Profile:

    http://www.excelforum.com/member.php...o&userid=30606
    > View this thread: http://www.excelforum.com/showthread...hreadid=502675
    >




+ 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