> Well done! And no problem. :)
> ---
[quoted text clipped - 49 lines]
> > > > > > > > date-picker field. can this be done with Infopath field rules, or do I need
> > > > > > > > to invoke VB?
You could change both age actions to multiply by 12. For example, the first
action would become
age = (number(substring(today(), 1, 4)) - number(substring(., 1, 4))) * 12
and the second one would become
age = (number(substring(today(), 1, 4)) - number(substring(., 1, 4)) - 1) * 12
But this would not give you the amount of months to date. The logic to do
that would become too complex for rules, so I would recommend writing code if
you want to calculate the exact amount of months until the day of today.
---
S.Y.M. Wong-A-Ton
> Your instructions for this work great! However, I have the need to calculate
> the age in months and not years. What rule should I delete/add/change to do
[quoted text clipped - 53 lines]
> > > > > > > > > date-picker field. can this be done with Infopath field rules, or do I need
> > > > > > > > > to invoke VB?