+ Reply to Thread
Results 1 to 7 of 7

Adding a space in text

  1. #1
    MB
    Guest

    Adding a space in text

    Hello experts,

    A previous employee created a spreadsheet whereas in Column A are employee
    names as follows:

    Doe,John

    Is there a formula that would add a space between the column and first name?

    Thanks so much for your help! I'm using Excel 2003.
    --
    MB

  2. #2
    Ardus Petus
    Guest

    Re: Adding a space in text

    In an empty column, enter:
    =SUBSTITUTE(A1,",",", ")

    HTH
    --
    AP

    "MB" <MB@discussions.microsoft.com> a écrit dans le message de news:
    223662FD-5433-440D-959C-435F1B0858F4@microsoft.com...
    > Hello experts,
    >
    > A previous employee created a spreadsheet whereas in Column A are employee
    > names as follows:
    >
    > Doe,John
    >
    > Is there a formula that would add a space between the column and first
    > name?
    >
    > Thanks so much for your help! I'm using Excel 2003.
    > --
    > MB




  3. #3
    Kevin Vaughn
    Guest

    RE: Adding a space in text

    This seems to work:

    =LEFT(A1,FIND(",",A1)) & " " & RIGHT(A1, LEN(A1)-FIND(",",A1))

    --
    Kevin Vaughn


    "MB" wrote:

    > Hello experts,
    >
    > A previous employee created a spreadsheet whereas in Column A are employee
    > names as follows:
    >
    > Doe,John
    >
    > Is there a formula that would add a space between the column and first name?
    >
    > Thanks so much for your help! I'm using Excel 2003.
    > --
    > MB


  4. #4
    Gary''s Student
    Guest

    RE: Adding a space in text

    =LEFT(A1,FIND(",",A1,1)) & " " & RIGHT(A1,LEN(A1)-FIND(",",A1,1))
    --
    Gary''s Student


    "MB" wrote:

    > Hello experts,
    >
    > A previous employee created a spreadsheet whereas in Column A are employee
    > names as follows:
    >
    > Doe,John
    >
    > Is there a formula that would add a space between the column and first name?
    >
    > Thanks so much for your help! I'm using Excel 2003.
    > --
    > MB


  5. #5
    Don Guillett
    Guest

    Re: Adding a space in text

    you said a formula, so

    =LEFT(D4,FIND(",",D4)) & " "&MID(D4,FIND(",",D4)+1,LEN(D4)-FIND(",",D4)+2)

    --
    Don Guillett
    SalesAid Software
    dguillett1@austin.rr.com
    "MB" <MB@discussions.microsoft.com> wrote in message
    news:223662FD-5433-440D-959C-435F1B0858F4@microsoft.com...
    > Hello experts,
    >
    > A previous employee created a spreadsheet whereas in Column A are employee
    > names as follows:
    >
    > Doe,John
    >
    > Is there a formula that would add a space between the column and first
    > name?
    >
    > Thanks so much for your help! I'm using Excel 2003.
    > --
    > MB




  6. #6
    MB
    Guest

    Re: Adding a space in text

    WOW! You are all so wonderful! Thank you!!
    --
    MB


    "Don Guillett" wrote:

    > you said a formula, so
    >
    > =LEFT(D4,FIND(",",D4)) & " "&MID(D4,FIND(",",D4)+1,LEN(D4)-FIND(",",D4)+2)
    >
    > --
    > Don Guillett
    > SalesAid Software
    > dguillett1@austin.rr.com
    > "MB" <MB@discussions.microsoft.com> wrote in message
    > news:223662FD-5433-440D-959C-435F1B0858F4@microsoft.com...
    > > Hello experts,
    > >
    > > A previous employee created a spreadsheet whereas in Column A are employee
    > > names as follows:
    > >
    > > Doe,John
    > >
    > > Is there a formula that would add a space between the column and first
    > > name?
    > >
    > > Thanks so much for your help! I'm using Excel 2003.
    > > --
    > > MB

    >
    >
    >


  7. #7
    CarlosAntenna
    Guest

    Re: Adding a space in text

    If you want to insert the space and leave the text in the same column:
    Select the column.
    Edit>replace>find , replace with ,<space>

    --
    Carlos

    "MB" <MB@discussions.microsoft.com> wrote in message
    news:223662FD-5433-440D-959C-435F1B0858F4@microsoft.com...
    > Hello experts,
    >
    > A previous employee created a spreadsheet whereas in Column A are employee
    > names as follows:
    >
    > Doe,John
    >
    > Is there a formula that would add a space between the column and first

    name?
    >
    > Thanks so much for your help! I'm using Excel 2003.
    > --
    > MB




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1