Sheet Summary with combined date fields
I'm trying to build a Summary field that pulls in the StartDate and EndDate. I'm using this formula:
=[Start Date]# + " - " + [End Date]#.
Does bring in the data from the two fields, but it includes the time as well as the date:
"12/09/24 8:00 AM - 12/13/24 4:59 PM"
Question: can I get this data with just the dates: "12/09/24 - 12/13/24"
thanks
Tags:
Answers
-
See if this does the trick:
=DATEONLY([Start Date]#) + " - " + DATEONLY([End Date]#)
-
If your dates are in date format columns you could try the DATEONLY function.
=DATEONLY([Start Date]#) + " - " + DATEONLY([End Date]#)
If they are text you can use the LEFT function to return only the first 8 characters.
=LEFT([Start Date]#, 8) + " - " + LEFT([End Date]#, 8)
-
Perfect! thanks
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.1K Get Help
- 430 Global Discussions
- 149 Industry Talk
- 489 Announcements
- 5.2K Ideas & Feature Requests
- 85 Brandfolder
- 154 Just for fun
- 74 Community Job Board
- 499 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 305 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!