split cell content

  • Thread starter Thread starter portroe
  • Start date Start date
P

portroe

I have a lot of imported data, unfortunately the post code and city is
stored in a single cell, in the form of

12159 Berlin

Does anybody have a procedure for removing one or the other from the cells,?

thanks

Portroe
 
Hi Portroe
if you have only German style zip codes try
Zip: =LEFT(A1,5)
City: =MID(A1,7,255)

or use 'Data - Text to columns'

Frank
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top