+ Reply to Thread
Results 1 to 3 of 3

tick box

  1. #1
    Registered User
    Join Date
    12-09-2005
    Posts
    9

    tick box

    Hi,
    I want to make a cell in my worksheet work like a tick box so that when it is double clicked a tick or "yes" appears to indicate that the job in the previous column has been done.
    Last edited by mango7; 12-22-2005 at 05:30 PM.

  2. #2
    Registered User
    Join Date
    11-02-2005
    Posts
    49

    auto check box

    I do not think i understand what you are trying to do. You can have a pick box that displays yes or no, and change it to yes when you have finished the job. I use a spreadsheet that tracks audit actions, the last column is "date action closed out". As soon as this cell is populated with a valid date, every cell in that row turns green by the use of conditional formatting.

    Hope this helps.

    Bobf

  3. #3
    Bob Phillips
    Guest

    Re: tick box

    Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
    Boolean)
    Const WS_RANGE As String = "A1:A10"

    If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
    With Target
    .Value = "a"
    .Font.Name = "Marlett"
    .Offset(1, 0).Select
    End With
    End If

    End Sub

    'This is worksheet event code, which means that it needs to be
    'placed in the appropriate worksheet code module, not a standard
    'code module. To do this, right-click on the sheet tab, select
    'the View Code option from the menu, and paste the code in.

    --
    HTH

    Bob Phillips

    (remove nothere from email address if mailing direct)

    "bob777" <[email protected]> wrote in
    message news:[email protected]...
    >
    > I do not think i understand what you are trying to do. You can have a
    > pick box that displays yes or no, and change it to yes when you have
    > finished the job. I use a spreadsheet that tracks audit actions, the
    > last column is "date action closed out". As soon as this cell is
    > populated with a valid date, every cell in that row turns green by the
    > use of conditional formatting.
    >
    > Hope this helps.
    >
    > Bobf
    >
    >
    > --
    > bob777
    > ------------------------------------------------------------------------
    > bob777's Profile:

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




+ 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