Hi Phil,
Here's my next attempt:
Sub PhilWXX(): Dim UR As Range, n As Long, m As Long
Dim C As Range, S As String, Q As String
Set UR = ActiveSheet.UsedRange
For Each C In UR: S = C.Value
n = InStr(1, S, "Birthday")
If n = 0 Then
m = InStr(1, S, " - ")
Do Until Not IsNumeric(Mid(S, m + 3, n + 1)): n = n + 1: Loop
Q = Mid(S, m + 3, n)
If IsNumeric(Q) Then
Mid(S, m + n, n) = CStr(Val(Q) + 1): C.Value = S
End If
Else
m = InStrRev(S, " ", n - 3) + 1
Q = Mid(S, m, n - m - 3)
If IsNumeric(Q) Then
Mid(S, m, n - m - 3 + 1) = CStr(Val(Q) + 1): C.Value = S
End If
End If
NextCell: Next
UR.Replace "0h", "0th"
UR.Replace "1th", "1st"
UR.Replace "2th", "2nd"
UR.Replace "3th", "3rd"
UR.Replace "2st", "2nd"
UR.Replace "3nd", "3rd"
UR.Replace "4rd", "4th"
UR.Replace "11st", "11th"
UR.Replace "12nd", "12th"
UR.Replace "13rd", "13th"
End Sub
Bookmarks