You can use the datediff() function with the month option and incorporate some calculations to split into years and months. The following is not tested:
Int(datediff("m", date(), dateofbirth)/12) & " years and " & datediff("m",date(), dateofbirth)-(Int(datediff("m", date(), dateofbirth)/12)*12) & " months"