Forum Discussion
Jagunjunior
Sep 06, 2021MCT
Help in splitting a non stand excel date and time
11 July 2014 12:00:00 I have a column with data an time in the format above ,I am finding it difficult to split I have tried INT fuction, text to colum function ,concatenate function stil...
- Sep 06, 2021CTRL+1 is a shortcut to access the Format Options.
There you can select or create your custom format for the cell you will apply to.
As I said, if you just want the date format only make reference to the cell where there is a full date format =A2 and apply your desired format using the format Option accessed by CTRL+1
HansVogelaar
Sep 06, 2021MVP
Let's say you have such a date in A2.
To extract the date, enter the formula =INT(1*A2) in a cell and format that cell as a date.
To extract the time, enter the formula =MOD(1*A2,1) in a cell and format that cell as a time.
Alternatively, use =DATEVALUE(A2) and =TIMEVALUE(A2)
- JagunjuniorSep 06, 2021MCTThank you for your help