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.
Val(Format([Alias_date],"ddmmyyyy"))
Dim DateString As String
DateString = Format([Alias_date],"ddmmyyyy")
Public Function NumFromDate(datDate As Date) As Long
Dim intFirst As Integer
Dim strFirst As String
Dim intI As Integer
intFirst = Day(datDate) + Month(datDate) + Year(datDate)
strFirst = CStr(intFirst)
For intI = 1 To 4
NumFromDate = NumFromDate + Val(Mid(strFirst, intI, 1))
Next
End Function