Translation of Excel Formula to Smartsheet

Options

How do I go about translating this Excel formula to Smartsheet?


Answers

  • KPH
    KPH ✭✭✭✭✭✭
    Options

    Is your formula calculating months between two dates?

    If so, and your dates are in columns formatted as date type, called “start date” and “end date”, and your formula is in another column on the same row, then you can calculate the months between the dates by calculating the days between the dates (using netdays), dividing by 365, and multiplying by 12.

    =(NETDAYS([Start Date]@row, [End Date]@row)/365)*12

    to get whole months you can wrap that formula within a ROUND function

    =ROUND((NETDAYS([Start Date]@row, [End Date]@row)/365)*12,0)

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!