Forum Discussion
SoundmanJer
Dec 03, 2024Copper Contributor
Need To Convert Data In Cell To Date and Time
Hello, normally I am pretty good at writing my own formulas, but for some reason this one has me a little stumped. We have a website with forms that clients enter information in, and that info is set...
- Dec 03, 2024
As variant
=LEFT(A1,10) + MID(A1,12,10) + MID(A1,21,3)/24/60/60/1000 - 8/24
SergeiBaklan
Dec 03, 2024MVP
As variant
=LEFT(A1,10) + MID(A1,12,10) + MID(A1,21,3)/24/60/60/1000 - 8/24
- SergeiBaklanDec 03, 2024MVP
You are welcome
- SoundmanJerDec 03, 2024Copper Contributor
Thank you so much! You are amazing! I was even able to modify it so we could change the date to a more standard format. I do appreciate it!