Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
(That is for start of January, 1997). So 001 would be from some time in the year 4713 B.C. I don't believe this date can be represented by access, but you may be able to put together a formula to create the date as a string and display that.245 0448.5
public function GetEventDate(EventNumber as String)
dim MyDate as String
MyDate = "#20" & left(EventNumber, 2) & "0101#"
GetEventDate = DateAdd("dd", Mid(EventNumber, 4, 3) - 1, MyDate)
end function
EventDate: GetEventDate(EventNumber)