I’m developing an DB for tracking my IT assets (and eventually more) I have added a calculated field to show me the age of the device. This formula correctly returns the number of months old the item is MONTHS(Purchase Date;TODAY()). I would refer to use YYMM(x;y) but this formula returns no value. I have tested other calculations and it appears Years, Months, and Days, all work while YYMM, and YYMMDD return nothing.
What am I missing?
Hi Anthony,
You may not have set the Result Type to Text for that function.
I just tested it and it works for me:
YYMM(Purchase Date;TODAY())
Returned:
0 years, 2 months
Yep that was it. I did not notice the result type box. Thanks!