Convert to EST time from PST time

bobpic

New Member
Joined
Jan 14, 2005
Messages
24
I have columns that look like below.. How can I easily convert them to PST from EST..

Thanks

10:00:00 AM
10:00:00 AM
4:00:00 PM
4:00:00 PM
5:45:00 PM
6:15:00 PM
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
If your time was in cell A1, simply use the formula:

=A1+(3/24)
 
Upvote 0
Assuming EST is PST minus 3 hours, enter 03:00 in a spare cell and choose Edit|Copy. Select your list of times choose Edit|Paste Special, check Subtract and click OK.

Edit - I guess it should be check Add instead of Subtract (EST is PST + 3 hours) :oops:
 
Upvote 0
Based on the locked duplicate posts here...

http://www.mrexcel.com/board2/viewtopic.php?t=135122
http://www.mrexcel.com/board2/viewtopic.php?t=135365

...here are a couple ways to do this if you really still do not have an answer.


If these values are in one column starting in A1, then...

Non-VBA:

In another cell (B1 or wherever) enter the formula
=A1+TIME(3,,)
and copy down as needed.



VBA:

Sub Test1()
Application.ScreenUpdating = False
Dim LR As Long
LR = Cells(Rows.Count, 1).End(xlUp).row + 1
With Range("B1:B" & LR)
.Formula = "=RC1+TIME(3,,)"
.Value = .Value
End With
Columns(2).AutoFit
Columns(1).Delete
Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,956
Messages
6,122,465
Members
449,085
Latest member
ExcelError

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top