Stefan, if you use Ctrl+; the date will not change, if you want the date to
be put in "automatically" and not change you will need some VBA to do it,
something like this, will put the date in A1 when the worksheet is selected,
will not put the date in if there is something in A1
Private Sub Worksheet_Activate()
If Not (IsEmpty(Range("A1"))) Then
Else
[A1].Value = Now
[A1].NumberFormat = "m/dd/yyy"
End If
End Sub
--
Paul B
Always backup your data before trying something new
Using Excel 97 & 2000
Please post any response to the newsgroups so others can benefit from it
** remove news from my email address to reply by email **
Stefan Buijs said:
It is not a matter of doeing it as well it may not be changed by the user
who gives the input as well day's or month later when the file is opened
again this date must be as the org date and not the =now() from that day
month later.
Stefan
Stefan, how about using Ctrl+; for the date or Ctrl+shift+: for the time,
or
both for the date and time
--
Paul B
Always backup your data before trying something new
Using Excel 2000 & 97
Please post any response to the newsgroups so others can benefit