Ok, I'm not sure what happened to my first thread, but I am going to post again. I currently am using the Date diff formula to get the age of patients.
This displays the age of the patient in years, so if the patient is 3 months old, it is displayed as 0. What I am trying to do, is get it to display 3 months old (or whatever the correct month of patient's age) if they're under 1 years old. If they are over 1 (the majority will be), to display as their age in years. Is this even possible? If so, any help is appreciated.
Code:
=DateDiff("yyyy",[DOB],Now())+Int(Format(Now(),"mmdd")<Format([DOB],"mmdd"))
This displays the age of the patient in years, so if the patient is 3 months old, it is displayed as 0. What I am trying to do, is get it to display 3 months old (or whatever the correct month of patient's age) if they're under 1 years old. If they are over 1 (the majority will be), to display as their age in years. Is this even possible? If so, any help is appreciated.