separate combined data into 2 separate columns.
Have this data that is in a single column. Would like to separate it into 2 different columns. Is there an easy way to do this?
thanks. DG
[Edited by Moderator]
MacBook Pro 16″, macOS 26.0
Have this data that is in a single column. Would like to separate it into 2 different columns. Is there an easy way to do this?
thanks. DG
[Edited by Moderator]
MacBook Pro 16″, macOS 26.0
There are a few ways. Here is one.
C2 =VALUE(TEXTBEFORE(B2," "))
D2 =VALUE(TEXTBETWEEN(B2," "," ",2))
fill down with both formulas.
Format column C for two decimal places
The VALUE function turns them into actual numbers. Otherwise they would be text "numbers".
There are a few ways. Here is one.
C2 =VALUE(TEXTBEFORE(B2," "))
D2 =VALUE(TEXTBETWEEN(B2," "," ",2))
fill down with both formulas.
Format column C for two decimal places
The VALUE function turns them into actual numbers. Otherwise they would be text "numbers".
separate combined data into 2 separate columns.