Re: Another Excel Question
I would take a slightly different approach than the one Robert suggests.
It sounds like you will be updating this daily. For instance, today you will put data in A1, tomorrow in A2, etc. That would require some excessively complicated VBA, IMO (unless I'm overlooking something).
I would instead create a button and call it "Date Stamp" or something like that and require the user to click this button after entering that day's data in column A. Put something like this in the button_click event:
Sub Button_Click()
Dim rngDateCell as Range
Set rngDateCell = Range("B65536").End(xlup).offset(1,0)
rngDateCell = format(now(),"Long Date")
End Sub
You should also have some error handling and such in there, but I think that will do what you want assuming you will always use consecutive rows to input the data.