Connect with peers, share your expertise, and inspire what’s next in Smartsheet — from proven practices to practical how-to insights from fellow users and product experts.
Sign in to join the conversation:
The posts in this section are historical and no longer monitored for accuracy. If this discussion interests you and you'd like to join in, please visit the active Community to post and engage.
Hi all.
looking for advice on how to potentialyl change the date that apepars in the start and end date column formats from xx/xx/xx to (for example) Wed xx/xx/xx. Is there a setting that allows you to change this? Not being able to see the day of the week is a bit of a challenge when putting together plans that have day of the week restrictions.
THanks!
Reg
See the below help article
http://help.smartsheet.com/articles/1872540-changing-the-language-date-format
Hi Reg,
It looks like Tony posted our Help Center article on changing the date format, but I wanted to let you know that we currently don't have a way to change the format to display the day of the week.
Our Development team is currenly hard at work on providing multiple date formats down the road. In the mean time, however, there is a workaround you can implement using a formula in a different column!
Create a text/number column next to your date column, and place a formula similar to the one below in the column:
=IF(WEEKDAY([Due Date]1) = 1, "Sunday", IF(WEEKDAY([Due Date]1) = 2, "Monday", IF(WEEKDAY([Due Date]1) = 3, "Tuesday", IF(WEEKDAY([Due Date]1) = 4, "Wednesday", IF(WEEKDAY([Due Date]1) = 5, "Thursday", IF(WEEKDAY([Due Date]1) = 6, "Friday", IF(WEEKDAY([Due Date]1) = 7, "Saturday")))))))
The above formula extracts the weekday and will return a text value based on the weekday given. You'll want to change the cell reference to match that of your column. Another callout is that this formula is long, so I'd recommend against using it on extensive sheets that already include several formulas and/or several rows/columns.
I noticed that, although my (US) date format is MM/DD/YY, when I use the Finish Date column in a concatenated column, for use as a bar label, that it add the time of day to it as well. Is there a way then to 1) prevent this and 2) use the solution to further customize the Finish Date in the bar label to, say, MM/DD?
1) To remove the time - use DATEONLY()
2) You can have any column as the Gantt chart bar, so you could have a column for the MM/DD formula
=LEFT([Finish Date]23,5) should work.
Hope this helps.
Craig