I did the math so you don't have too.
If your fixed asset data only has a purchase date or in-service date, but you really want to populate all those great reports, you'll need to calculate Age in a way that will automatically update as the assets get older.
Here's are the formulas
Age (in Months)
=Round(Elapsed(Acquisition Date,(CurrentDate("M/d/yy")))/2592000,1)
Age (In Years)
=Round(Elapsed(Acquisition Date,(CurrentDate("M/d/yy")))/31557600,1)
Age Range
=Lookup(Age Years,Age Range,Age,Range)
Age Years Table is attached
For the reports to work correctly the default Age column must be in MONTHS to match the Fixed Asset Depreciation LIM column.