Greetings,
I have a I column of values of the format " Aug 30, 2018" and so on. I would like to be able to convert these into the format "MM/DD/YYYY"
Dim A as Long, LastRow as Long
LastRow = Cells(Rows.Count,"A").End(xlUp).Row
For K = LastRow to 1 Step -1
CDate(Cells(K,"A").value) =...