Function NumSuffix(MyNum As Variant) As String
'*******************************************
'Purpose: Add suffix to a number
'Inputs: ? NumSuffix(234)
'Output: 234th
'*******************************************
Dim n As Integer
Dim x As Integer
Dim strSuf As String
n = Right(MyNum, 2)
x = n Mod 10
strSuf = Switch(n <> 11 And x = 1, "st", n <> 12 And x = 2, "nd", _
n <> 13 And x = 3, "rd", True, "th")
NumSuffix = LTrim(str(MyNum)) & strSuf
End Function
Public Function DateSay(ByRef pDte As Date) As String
Dim strHold As String
strHold = Format(pDte, "mmmm") & " " & NumSuffix(day(pDte)) & " " & Format(pDte, "yyyy")
DateSay = strHold
End Function