I found a formula that calculates the years and months between 2 different dates, but because it's not also calculating the days, it is rounding up the months which isn't going to work in the case that I need it.
Here is a picture of what I'm looking for (how many years, months, and days) Purchase Date to Expiration Date.
The formula that I'm currently using is:
=ROUND(ROUND((NETDAYS([Purchase Date]@row, [Expiration Date]@row) / 365) * 12) / 12) + "yrs" + MOD(ROUND((NETDAYS([Purchase Date]@row, [Expiration Date]@row) / 365) * 12), 12) + "mo"
Please let me know if I'm missing something to be able to also add in the day count!
Thank you