Thread: format split
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Sninkle Sninkle is offline
external usenet poster
 
Posts: 15
Default format split

I have two options for you which may vary depending on which version you are
running.

1) If all the data is entered in Column A and you just need to fill in B & C
there is an option under Data- Text to Columns. Using this wizard it will
split your data into columns.

2) If you need columns B & C to update as you are entering A:
Column B formula: =LEFT(A1,SEARCH(" ",A1,1))
Column C formula: =RIGHT(A1,LEN(A1)-SEARCH(" ",A1,1))
Note that these formulas are grabbing the left and right data based on the
space (" ") if you enter an item such as "John M. Doe" it will not pull it
properly.

"RKS" wrote:

Hi
I have one big excel sheet. in this sheet one column use many custom format.
when i type any number that column, unit display with number. for example;

A B C
100 pcs
50 LTR
200 carton
60 pcs
...

in column A use many cutom format like ""0" PCS" , ""0" LTR"

I wants split number and unit in column B and C

PLease help me urgently

RKS