I'm sure raskew's reponse will work, but maybe this is a little shorter way.
' Give Age in Years, Months
Function GetAgeYM(DOB As Variant) As String
Dim intYears As Integer, intMonths As Integer
Dim strTmp As String
If Not IsDate(DOB) Then Exit Function
intMonths = Int(DateDiff("m", DOB...