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:
We have Smartsheet integrated with another system and pulling data across into Smartsheet. Currently the date format that is coming across is (YYYY-MM-DD) and I want to translate that into my local profile date format of (MM/DD/YY). Is there a function or formula that allows me to do this? I have been unsuccessful in my searches for figuring this out.
Hi Mark,
There isn't a specific function to translate the date format, but it can be set up with the help of some helper columns.
Can you describe your process in more detail and maybe share the sheet(s) or some screenshots? That would make it easier to help. (share too, andree@getdone.se)
I hope this helps you!
Have a fantastic week & Happy Holidays!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
Hi again Mark,
I solved it with the help of some helper columns, but I'm looking at making it less complicated. I'll get back to you.
Try this.
Place the formula below in the column where you want the converted date format to be. OrgDate is the date that you want to convert.
=IF(LEN(MONTH(OrgDate@row)) = 1; "0" + MONTH(OrgDate@row); MONTH(OrgDate@row)) + "/" + IF(LEN(DAY(OrgDate@row)) = 1; "0" + DAY(OrgDate@row); DAY(OrgDate@row)) + "/" + RIGHT(YEAR(OrgDate@row); 2 + IF(YEARDAY(OrgDate@row) < 10; "00"; IF(YEARDAY(OrgDate@row) < 100; "0")))
The same version but with the below changes for your and others convenience.
=IF(LEN(MONTH(OrgDate@row)) = 1, "0" + MONTH(OrgDate@row), MONTH(OrgDate@row)) + "/" + IF(LEN(DAY(OrgDate@row)) = 1, "0" + DAY(OrgDate@row), DAY(OrgDate@row)) + "/" + RIGHT(YEAR(OrgDate@row), 2 + IF(YEARDAY(OrgDate@row) < 10, "00", IF(YEARDAY(OrgDate@row) < 100, "0")))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Hello, I have a workflow where, when a team member checks a checkbox, Smartsheet automatically sends an email to themselves containing merge fields that are used as a customer email draft. The challenge is that this activity typically happens on a deadline day, and a team member may need to generate 30 or more of these…
Hi all, reaching out to see if of you have ideas; I'm hoping this makes sense: I'm having some trouble getting my formulas to pull data in correctly. I currently have a sheet (primary data) where I have data in rows where each row is a single project, with columns identifying persons, $ values, unique project identifier,…
I have #'s that pull from each project into each sheet's - sheet summary. Those then get pulled into a sheet summary report. They are currently grouped by what channel they are in. Each column gives a total sum. I was asked to see if we can combine the total sum into one number, so it shows how many total SKU's are being…