I am trying to write a script in excel that will sperate the date and time value in one column and place the date into a separate column. So for example, I have "11/4/2023 11:00 am" in column A1 when ideally I need the date in A1 and the time in B1; and I need this to loop through every used row. I have tried a couple methods but keep getting errors. I am using scripts to try and automate this. (I have the macro written and working but the software I am using to automate this does not accept macros)
One thing that I have tried
let s = mainSheet.getRange("A2").getValue().toString()
let ss = s.split(" ")
console.log(ss)
The console return value is "45231"
Option 1: applies different datetime formats to Columns A and B in order to extract the date and time.
If Option 1 doesn't meet your requirements, please consider using Option 2.
Option 2: Split text into two parts
If you don't need to validate the datetime string,
splitDateAndTime
could be simplified as below.