I have a formula field in my report which returns a persons age in months using DateDiff e.g.
Local DateTimeVar d1 := {dob_view.date1};
Local DateTimeVar d2 := {AE_PAS_DELIVERING.Attendancedate};
DateDiff ("m", d1, d2)
I need to show the age in Years and Months i.e. 3yrs 4months instead of 40 months. All help will be welcome thanks.
Local DateTimeVar d1 := {dob_view.date1};
Local DateTimeVar d2 := {AE_PAS_DELIVERING.Attendancedate};
DateDiff ("m", d1, d2)
I need to show the age in Years and Months i.e. 3yrs 4months instead of 40 months. All help will be welcome thanks.