Have tried "insert date/stamp" and also =(now) commands though neither of
these methods are right.
TIA
--
Sue Compelling
The AfterUpdate event of the text box would probably be a better choice than
the Exit event.
--
Brendan Reynolds
Access MVP
"Sue Compelling" <SueCom...@discussions.microsoft.com> wrote in message
news:20E56303-6AB2-42F3...@microsoft.com...
Area Coordinators get sent lists of their Volunteers (Breast Cancer Street
Appeal) every 3 days leading up to the event. Some of the lists are quite
long so they want to see at the TOP of the list, those people that have had
new info added. I was intending doing a sort on date order of a separate
field that gets timestamped, though of course your recommendation buries the
time stamp within the body of the notes. eg - this is a sample of a notes
field
Sarah Cunningham's mum who wants to help too - 10/10/2006
Has broken her foot so will not be able to stand - 12/10/2006
Hasn't been contacted, please ring asap - 17/10/2006
So - how would I be able to identify that this person had notes entered
AFTER 13/10/2006 and then ensure that they are the first on the list?
Thanks for any help you can give
--
Sue Compelling
--
Brendan Reynolds
Access MVP
"Sue Compelling" <SueCom...@discussions.microsoft.com> wrote in message
news:2E9C8E23-0BDD-4E8A...@microsoft.com...
Private Sub txtNewText_AfterUpdate()
Me.Notes = Me.txtNewText & " - " & Now() & vbCrLf & Me.Notes
End Sub
--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
"Sue Compelling" <SueCom...@discussions.microsoft.com> wrote in message
news:2E9C8E23-0BDD-4E8A...@microsoft.com...
Yes - this was a better option than the first as it allows the user to amend
notes (as opposed to adding notes) without generating a time stamp each time.
BUT - I still have the same problem whereby I need to strip out the date
part ONLY of the latest notes and store it in another field (let's call it
textNewTextDate) so I can sort by it. Thoughts? I'm thinking I do a similar
'afterupdate' command to that text box as well though only using the Now ()
ps - I agree with Brendan's comment regarding separate records and I
initially had the notes field as a sub form though the Users requested this
set up so they could use the Ctl F in the Notes for 'conversation' records
that they'd transcribed.
--
Sue Compelling
I played around and worked it out - thanks muchly. Sue.
--
Sue Compelling