+ Reply to Thread
Results 1 to 6 of 6

PLEASE PLEASE HELP

Hybrid View

Guest PLEASE PLEASE HELP 05-06-2006, 06:00 PM
Guest Re: PLEASE PLEASE HELP 05-06-2006, 06:30 PM
Guest Re: PLEASE PLEASE HELP 05-08-2006, 12:50 AM
Guest Re: PLEASE PLEASE HELP 05-08-2006, 08:25 AM
Guest Re: PLEASE PLEASE HELP 05-13-2006, 08:20 PM
Guest Re: PLEASE PLEASE HELP 05-13-2006, 10:10 PM
  1. #1
    oscarr@gmail.com
    Guest

    PLEASE PLEASE HELP

    I Have an emergency... I deleted a macro !!!
    I have 60 rows with checkboxes on cells A1 trough A60 that
    automatically as checked were inserting current dates on the cell next
    to it.
    for some reason a disaster happened and the macro was deleted or messed
    up.
    I tried searching for help in these groups, but none so far. I found
    one, but it is not a macro besides when I use that function all the
    other previous dates keep changing when other checkboxes are checked
    on in different days of the week.
    If you can please guide me to the right answer I will appreciated. Hope
    I made sense with my explanation
    Thank you so very much.
    Oscar


  2. #2
    Dave Peterson
    Guest

    Re: PLEASE PLEASE HELP

    First, do you have an older copy of the workbook where you could copy the code?

    If not, I put several checkboxes from the Forms toolbar on a worksheet.

    I assigned this macro to each of them:

    Option Explicit
    Sub testme01()
    Dim myCBX As CheckBox
    Set myCBX = ActiveSheet.CheckBoxes(Application.Caller)

    If myCBX.Value = xlOn Then
    With myCBX.TopLeftCell.Offset(0, 1)
    .Value = Date
    .NumberFormat = "mm/dd/yyyy"
    End With
    Else
    myCBX.TopLeftCell.Offset(0, 1).Value = ""
    End If
    End Sub


    If the checkbox is checked, it puts the date. If it's not checked, it clears
    that cell.



    oscarr@gmail.com wrote:
    >
    > I Have an emergency... I deleted a macro !!!
    > I have 60 rows with checkboxes on cells A1 trough A60 that
    > automatically as checked were inserting current dates on the cell next
    > to it.
    > for some reason a disaster happened and the macro was deleted or messed
    > up.
    > I tried searching for help in these groups, but none so far. I found
    > one, but it is not a macro besides when I use that function all the
    > other previous dates keep changing when other checkboxes are checked
    > on in different days of the week.
    > If you can please guide me to the right answer I will appreciated. Hope
    > I made sense with my explanation
    > Thank you so very much.
    > Oscar


    --

    Dave Peterson

  3. #3
    oscarr@gmail.com
    Guest

    Re: PLEASE PLEASE HELP

    It works !...It works !...It works !...It works !...
    Thank you thank you thank you...
    I love you ... I love you and I love you.... thank you thank you you
    rescued me BIG TIME


  4. #4
    Dave Peterson
    Guest

    Re: PLEASE PLEASE HELP

    So are you saying you got it to work??? <vbg>

    "oscarr@gmail.com" wrote:
    >
    > It works !...It works !...It works !...It works !...
    > Thank you thank you thank you...
    > I love you ... I love you and I love you.... thank you thank you you
    > rescued me BIG TIME


    --

    Dave Peterson

  5. #5
    oscarr@gmail.com
    Guest

    Re: PLEASE PLEASE HELP

    Yes. Thanks to you...
    people like you that help others should have the best luck for the rest
    of their life... kinda like karma. today for me, tomorrow for you


  6. #6
    CLR
    Guest

    Re: PLEASE PLEASE HELP

    Sometimes being late is a good thing.........<g>

    Vaya con Dios,
    Chuck, CABGx3



    "Dave Peterson" <petersod@verizonXSPAM.net> wrote in message
    news:445F375E.E1833CFB@verizonXSPAM.net...
    > So are you saying you got it to work??? <vbg>
    >
    > "oscarr@gmail.com" wrote:
    > >
    > > It works !...It works !...It works !...It works !...
    > > Thank you thank you thank you...
    > > I love you ... I love you and I love you.... thank you thank you you
    > > rescued me BIG TIME

    >
    > --
    >
    > Dave Peterson




+ 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