Best Of
Re: Formula for updating window of time to different time zones...
Adding two helper columns to standardize the time format is a great idea! This approach not only simplifies daily entries but also ensures consistency, which is crucial for accurate formula calculations.π
Re: Formula for updating window of time to different time zones...
Sorry @jmyzk_cloudsmart_jp - we worked it at the same time.
Hey @SHousewright
If you added two helper columns, you might be able to simplify your daily entries. Importantly, this would also make certain that the time format was standardized, which is critical for any formula. The two helper columns are Start time (H:MM) and Duration (min). With these columns you can then utilize the TIME function, which will automatically format your results.
Using the [Start Time PDT (H:MM)] and [Duration (min)] columns then the formulas become:
Session Time PDT
=IF([Start Time PDT (H:MM)]@row <> "", TIME([Start Time PDT (H:MM)]@row, 0) + " - " + TIME(TIME([Start Time PDT (H:MM)]@row, 0) + [Duration (min)]@row, 0))
Session Time EDT
=IF([Start Time PDT (H:MM)]@row <> "", TIME(TIME([Start Time PDT (H:MM)]@row, 0) + 180, 0) + " - " + TIME(TIME([Start Time PDT (H:MM)]@row, 0) + 180 + [Duration (min)]@row, 0))
Session Time GMT
=IF([Start Time PDT (H:MM)]@row <> "", TIME(TIME([Start Time PDT (H:MM)]@row, 0) + 420, 0) + " - " + TIME(TIME([Start Time PDT (H:MM)]@row, 0) + 420 + [Duration (min)]@row, 0))
Session Time CDT
=IF([Start Time PDT (H:MM)]@row <> "", TIME(TIME([Start Time PDT (H:MM)]@row, 0) + 120, 0) + " - " + TIME(TIME([Start Time PDT (H:MM)]@row, 0) + 120 + [Duration (min)]@row, 0))
Session Time MDT
=IF([Start Time PDT (H:MM)]@row <> "", TIME(TIME([Start Time PDT (H:MM)]@row, 0) + 60, 0) + " - " + TIME(TIME([Start Time PDT (H:MM)]@row, 0) + 60 + [Duration (min)]@row, 0))
Will this work for you? If you want to keep entering the entire PDT session string, let me know and I'll adjust the formulas. I, however, would recommend limiting manual keystrokes to as few as possible
Kelly
Kelly Moore
Re: Formula for updating window of time to different time zones...
You can use the following formulas to convert the session time from PDT to other time zones automatically in Smartsheet:
Extract Start and End Time from PDT in 24 hour format
[PTD End 24] =TIME(RIGHT([Session Time PDT]@row, LEN([Session Time PDT]@row) - FIND(" - ", [Session Time PDT]@row) - 2), 1)
Convert to Other Time Zones
[MDT] =TIME([PTD Start 24]@row, 0) + MTD# * 60 + " - " + (TIME([PTD End 24]@row, 0) + MTD# * 60)
[CDT] =TIME([PTD Start 24]@row, 0) + CDT# * 60 + " - " + (TIME([PTD End 24]@row, 0) + CDT# * 60)
[EDT] =TIME([PTD Start 24]@row, 0) + EDT# * 60 + " - " + (TIME([PTD End 24]@row, 0) + EDT# * 60)
[GMT] =TIME([PTD Start 24]@row, 0) + GMT# * 60 + " - " + (TIME([PTD End 24]@row, 0) + GMT# * 60)
Explanation of the TIME Function
The TIME function in Smartsheet converts a string or numerical input into a time object.
Syntax:
TIME(time_value, [format], [precision])
- time_value β String ("8:30 PM") or numbers (hours, minutes, seconds).
- format β Optional; 0 for 12-hour, 1 for 24-hour.
- precision β Optional; 1 = hh, 2 = hh:mm, 3 = hh:mm:ss.
Example:
=TIME("4:30 PM", 1, 3)
Returns 16:30:00 in 24-hour format.
Explanation of + 60 * Time Shift (e.g., + GMT# * 60)
The + 60 * Time Shift part adjusts the extracted time to the target time zone.
- In Smartsheet, TIME() outputs values in minutes, so adding a time shift requires converting hours into minutes.
- Since 1 hour = 60 minutes, multiplying the time zone offset (e.g., GMT#) by 60 shifts the time correctly.
For example, converting PDT to GMT:
=TIME([PTD Start 24]@row, 0) + 7 * 60
- If PDT time is 8:00 AM, this formula shifts it by 7 hours (7 * 60 = 420 minutes).
- The result will be 3:00 PM GMT.
Replace MTD#, CDT#, EDT#, and GMT# with the correct hour offsets (+1, +2, +3, +7) respectively.
Re: September Question of the Month - Join the conversation and receive a badge
This summer I tried the new Lego LED light kits!!! Chanced my life π€£
Joe Goetschel
Re: September Question of the Month - Join the conversation and receive a badge
I tried using AI to figure out a complicated Smartsheet formula. Typing out what I was trying to do in the prompt got me about 80% where I needed to be, making the last 20% a breeze.
TamieKing
Re: September Question of the Month - Join the conversation and receive a badge
I recently tried using the new "add to dashboard" feature in the Analyze data AI tool in Smartsheet, and it is a game changer! To create dashboard charts previously, I had to create many many sheet summary fields or column formulas, then a report with select summary fields for each chart I wanted, then create the chart from the report and hope it is formatted the way I was hoping for. Now, I can create all the same charts as before, ** plus ** ask the tool to change the chart type, add sorts, apply filters (including current user filters!), and more- no reports or sheet summaries required!!
I had been contemplating creating 100 column formulas and 25 reports to display survey results on a dashboard, but with the new tool, all I have to do is edit my prompt for each chart, and voila- instant charts!
I hope this tool continues to improve in capability- I have many more uses that it can't handle yet (density charts would be great!)
Janae G.
Re: September Question of the Month - Join the conversation and receive a badge
This summer I started to practice Archery more to mediate in peaceful focus. There hasn't been much more that excited me as much as hitting the target!
Re: September Question of the Month - Join the conversation and receive a badge
I recently tried to create a dashboard. It did not go well, but I'm going to keep at it and find some tools to help.
Re: September Question of the Month - Join the conversation and receive a badge
Recently I learned how to map PDFs in the Smartsheet platform which is making life soooo much easier. I built a system for the county continuous improvement leadership with the automations that start the mapping. He indicated it saved him an incredible amount of production time. He was able to send 65 mapped PDFs that would normally take three days to enter data into a regular PDF in 45 minutes! This is remarkable for someone at that salary grade to shave more than two and half days off of a project like this.
herickson
Re: September Question of the Month - Join the conversation and receive a badge
Our company added Data Shuttleβ¦and I love it! It helps with all the manual work and formulas. I can't wait to see if we get Data Mesh! π that would be life changing! π€©
noshiro


