I have a set of columns set up in Google Sheets that display the difference between two dates using the DATEDIF
function:
=DATEDIF (AS2, TODAY(), "D")
(number of days passed today since a certain date)
=DATEDIF (AR11, AS11, "D")
(number of days passed between two certain dates)
The values are represented as a number (of days). This is fine for shorter durations, but for something like 987 days I would like to display the value into something more intuitive, such as:
| 2 Years, 8 months, 17 days |
If that is not possible within the same column, I would at least like to have a set of three columns that display this time duration in three separate value types:
| 2 Years | 8 months | 17 days |
Just changing the value type for each column (from days to months for example) would, of course, be simple enough, but I'm not sure how to proceed in keeping the values displayed in relation to each other (and not just have the same value be displayed in different duration types).
Any suggestions, please?
2 Years, 8 months and 17 days
may not be of equal length. Are you okay with that being so? (Unless you apply some other fudge factor like all months being 30 days long) – Jerkin