First let me say two things--I have been searching and trying different examples for two days and have not been able to make anything I find work (I'm sure due to my lack of knowledge) and second, if anyone that is kind enough to try to help me assumes I won't need every single step included to make it work, they are probably wrong. I want to put a field in a query that will calculate age in years and months to the current date so that I can use it for more than one form or report. What I am currently using (shown below) gives only years and now I'd like months as well.
Age: DateDiff("yyyy" ,[Date Shipped from Factory],Now())+Int(For mat(Now(),"mmdd ")<Format([Date Shipped from Factory],"mmdd"))
If it would be easier to put an unbound control in my form or report, I would be willing to do that as well. Any assistance would be appreciated.
Age: DateDiff("yyyy" ,[Date Shipped from Factory],Now())+Int(For mat(Now(),"mmdd ")<Format([Date Shipped from Factory],"mmdd"))
If it would be easier to put an unbound control in my form or report, I would be willing to do that as well. Any assistance would be appreciated.
Comment