+ Reply to Thread
Results 1 to 2 of 2

get date with now() today() but dont update with recalc

  1. #1
    robert w
    Guest

    get date with now() today() but dont update with recalc

    is there a way to stop a cell being recalculated when useing the now()
    function ?
    e.g if(a1="order",c1=now(),"")....but i dont want the cell updated after its
    inital value is obtained.

  2. #2
    CLR
    Guest

    Re: get date with now() today() but dont update with recalc

    This Change-event macro will put the date in C1 when "order" is typed in A1
    and the "Enter" key is pressed.

    Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
    If Range("a1").Value = "order" Then
    Range("c1").Value = Date
    End If
    End Sub

    Vaya con Dios,
    Chuck, CABGx3


    "robert w" <robert [email protected]> wrote in message
    news:[email protected]...
    > is there a way to stop a cell being recalculated when useing the now()
    > function ?
    > e.g if(a1="order",c1=now(),"")....but i dont want the cell updated after

    its
    > inital value is obtained.




+ 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