Translation of Excel Formula to Smartsheet
How do I go about translating this Excel formula to Smartsheet?
Answers
-
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
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.1K Get Help
- 348 Global Discussions
- 199 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 133 Brandfolder
- 127 Just for fun
- 127 Community Job Board
- 455 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 282 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!