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
- Customer Resources
- 67.1K Get Help
- 450 Global Discussions
- 155 Industry Talk
- 505 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 514 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 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!