I'm trying to append a date field to memo field each time the date field is updated. This is to maintain a history. I'm using an after update event on the date field called "lastmeetingdate" and appending the date to a memo field called "meetinghistorydate". Here is the code
This works fine except that I would like to append the date in a Medium or Long format. Anyone know what code to add to make this happen?
Thanks
Code:
Me!MeetingDateHistory = Me!MeetingDateHistory & vbCrLf & Me.LastMeetingDate
This works fine except that I would like to append the date in a Medium or Long format. Anyone know what code to add to make this happen?
Thanks