In Google Sheets, there isn't a built-in function specifically designed for converting between time zones directly. However, you can create a formula that effectively converts time from one time zone to another by adding or subtracting the difference in hours (and minutes, if necessary) between the time zones.
Here’s how you can construct such a formula using the DATE, TIME, and TEXT functions:
=TEXT(A1 + (TIME(N, 0, 0)), "yyyy-mm-dd hh:mm AM/PM")
Follow the steps below to use Google Sheets time zone conversion.
In your spreadsheet, select a cell like A1, and type in the time and date you want to convert. Use a clear format, such as "2024-02-23 10:00 AM". This ensures Google Sheets can correctly recognize and manipulate the time and date information for conversion.
Decide on where you'd like the converted time to appear in your spreadsheet. Click into the output cell (e.g., B1) and enter the formula framework: =TEXT(A1+(TIME(N,H,M)),"yyyy-mm-dd hh:mm AM/PM").
This formula is the foundation for your conversion, where "A1" is the reference to your original time and date, and N, H, and M will be the adjustments you make for the time zone difference.
To convert between specific time zones, you need to adjust the N, H, and M values in the formula based on the time difference between your current time zone and the target time zone.
For example: If you're converting from Eastern Standard Time (EST) to Pacific Standard Time (PST), you subtract 3 hours because PST is 3 hours behind EST. The formula in B1 would be =TEXT(A1-TIME(3,0,0),"yyyy-mm-dd hh:mm AM/PM").
For another example: If you need to convert from Central European Time (CET) to Eastern Standard Time (EST), you subtract 6 hours (considering CET is 6 hours ahead of EST). The formula would be =TEXT(A1-TIME(6,0,0),"yyyy-mm-dd hh:mm AM/PM").
With the formula entered, press the Enter key on your keyboard. This action applies the formula and the converted time. This also accounts for the time zone difference, which will be displayed in your selected output cell.
If you have a list of times in the same column that need converting, you can easily apply the same conversion to them. Click on the cell with your conversion formula, then hover over the small square at the bottom right corner until the cursor becomes a crosshair.
We hope that you now have a better understanding of how to use Google Sheets time zone conversion. If you enjoyed this article, you might also like our article on how to hide tabs in Google Sheets from certain users or our article on how to set up Google Sheets image function.