Feb 12, 2003 #1 legendv Technical User Apr 10, 2002 32 US I want to add info to a memo field without being able to change info that was already added, and with a date/time stamp. Is that possible?
I want to add info to a memo field without being able to change info that was already added, and with a date/time stamp. Is that possible?
Feb 12, 2003 #2 FancyPrairie Programmer Oct 16, 2001 2,917 US Try something lik this: MemoField = MemoField & "New date/time is: " & Now() Or if you want a line break, try something like this: MemoField = MemoField & vbCrLf & "New date/time is: " & Now() Upvote 0 Downvote
Try something lik this: MemoField = MemoField & "New date/time is: " & Now() Or if you want a line break, try something like this: MemoField = MemoField & vbCrLf & "New date/time is: " & Now()
Feb 12, 2003 Thread starter #3 legendv Technical User Apr 10, 2002 32 US Thanks Fancy Upvote 0 Downvote