Hello,
In one of my cells I have the time in UTC. In another cell, I use this time to calculate it in EST.
I noticed today that there's an issue with the calculation on a specific time: 2021-04-30 6:10:48 PM
When doing the calculation it comes up as 4-30-21 12:48 PM which is wrong.
The weird thing is that if I change the time 2021-04-30 6:10:48 PM to 6:10:47 PM or 6:10:49 PM, it calculates it correctly to 4-30-21 2:10 PM.
Formula I use is =LEFT(C118,LEN(C118)-3)+(VLOOKUP(A118,Variables!A:B,2,FALSE)/24)
where A118 is a location code that gives the timezone to calculate on (-4 for example to get EST) and C118 is 2021-04-30 6:10:48 PM
Anyone have any idea why an exact time to the second breaks the calculation? Thank you.