While working on Excel reports and Excel dashboards in Microsoft Excel, we need to convert Date and Time. In addition, we need to get the difference in timings in Microsoft Excel.
Central Standard Time (CST) is 6 hours behind Greenwich Mean Time (GMT) or Universal Coordinated Time (UTC), sounds familiar no).
So, to convert GMT to CST we just need to subtract 6 hours from GMT time. Let’s do it...
=Timestamp + 1 - TIME(6,0,0) |
Example:
I have GMT timestamps in range A2 to A4 and I want CST time in range B2 to B4.
We just need to subtract 6 hours from A2 to successfully convert GMT to CST. We will use the TIME() function of excel.
The formula is quite simple. In cell B2, write this formula.
=A2+1-TIME(6,0,0) |
Explanation:
The formula is simply subtracting 6 hours, 0 minutes and 0 seconds to convert GMT to CST.
You must be wondering why there is an additional +1. Don’t worry I got you.
Why +1?
This is to avoid any errors. Let’s say you want to convert 5:0 0 AM into CST. You subtract 6 hours and you expect to get to 11:00 PM. But instead of that, you get ######. You don’t want this, right?
When you just enter time in a cell without any date, excel by default takes 1/0/1900 as date, which is excel’s first date. Excel doesn’t know the history before that. Don’t try to teach him. He gets #######. So when you subtract 6 hours from 1/0/1900 5:00 AM it results in an error since there are only 5 hours available.
+1 adds 24 hours to the given time that prevents error.
=Timestamp - TIME(6,0,0) |
You can simply subtract 6 hours using TIME() function to convert GMT into CST in excel 2016, 2013,and 2010.
Example:
I have GMT time in Range (A2:A4).
To get it converted into CST time zone we just need to enter the formula below into B2 and then drag it down.
=A2-TIME(6,0,0) |
You must have noticed that we don’t have that additional +1 in the formula, why?
Right, because we have a date associated with that time.
To know what time is it now central time just use above Formula with NOW() function
=NOW() - TIME(6,0,0) |
You can use this formula to make a live GMT to CST converter.
To convert CST to GMT time just add 6 hour in CST time. As I explained, Central Time is 6 hour behind Greenwich Mean Time, we just need to add 6 hours to convert CST to GMT.
To convert CST to GST time just replace minus (-) sign with plus (+) sign.
=Timestamp + 1 + TIME(6,0,0) |
=Timestamp + TIME(6,0,0) |
Frequently Asked Questions:
Q1. How to convert CST to JST?
JST (Japan Standard Time) is 14 hours ahead of CST. To convert CST to JST just add 14 hours to the CST time. JST to CST can be achieved by just subtracting 14 hours from the JST time
Q2. How to convert ET to CST?
Eastern Daylight Time is 1 hour ahead of Central Standard Time. You know the rest.
I’m sure that I have cleared your thoughts regarding the GMT to CST and CST to GMT time conversion in excel 2016, 2013 and 2010. If you still have any questions, the comments section is open for you.
Popular Articles:
50 Excel Shortcut to Increase Your Productivity
How to use the VLOOKUP Function in Excel
The applications/code on this site are distributed as is and without warranties or liability. In no event shall the owner of the copyrights, or the authors of the applications/code be liable for any loss of profit, any problems or any damage resulting from the use or evaluation of the applications/code.
This only works on Standard time, not daylight time.
I tried it and it threw my off a day.
The I have to use the entire Date AND GMT time. So, the formula added a day when in fact it is only 6 hours earlier.
Date/Time Given: 07/11/2014 07:27 AM
Date/Time Calculated: 07/12/2014 01:27 AM
If fact the correct result should be: 07/11/2014 01:27 AM
Taking out the "+1" resolved it. So, why is it there?
You only need to add the 1 when you have time only. The +1 for the time just makes sure you are not negative. Do not add the 1 if the date is included since it will substract to the previous day or add to the next day.
Actually this formula interprets the result as a negative time and therefore displays an error. Because 1 = 24 hours, the formula should read =A2+1-TIME(6,0,0).
I just tested this converting 1:38 AM GMT to 5:38 PM PST (8 hours earlier)