Looking for formula(s) to determine number of months, weeks, days remaining.

Jason F
Jason F ✭✭✭✭
edited 03/14/25 in Formulas and Functions

I have a beginning date and an end date. Looking for a formula to determine the countdown but in month, week, day form.

i.e. (3 months, 1 week, 6 days remaining until end)

Tags:

Answers

  • Melissa Yamada
    Melissa Yamada ✭✭✭✭✭

    Hello @Jason F

    Try this:

    For Days:

    =TODAY() - [End Date]@row

    For Weeks:

    =(TODAY() - [End Date]@row) / 7

    For Months:

    =SUM(12 * (YEAR([End date]@row) - YEAR(TODAY())), MONTH([End date]@row) - MONTH(TODAY()))

    Melissa Yamada
    melissa@insightfulsheets.com
    Data made simple, spreadsheets reimagined

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!