+ Reply to Thread
Results 1 to 12 of 12

How can I insert a period into exsisting cells?

  1. #1
    JM
    Guest

    How can I insert a period into exsisting cells?

    Hello, Is it possible to insert a period into the middle of a string of
    numbers? I have 800 numbers I need to change in A1 to A801. Can I do this
    without having to retype the entire column?

    Here's an example:
    I need to change 26150G to 26.150G

    Any help will be greatly appreciated.
    Thank You

    JM


  2. #2
    Peo Sjoblom
    Guest

    Re: How can I insert a period into exsisting cells?

    What's the rule where to insert it, will it always be inserted after the 2
    character like in 23.150G or what would the rule be?

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "JM" <[email protected]> wrote in message
    news:[email protected]...
    > Hello, Is it possible to insert a period into the middle of a string of
    > numbers? I have 800 numbers I need to change in A1 to A801. Can I do this
    > without having to retype the entire column?
    >
    > Here's an example:
    > I need to change 26150G to 26.150G
    >
    > Any help will be greatly appreciated.
    > Thank You
    >
    > JM
    >



  3. #3
    JM
    Guest

    Re: How can I insert a period into exsisting cells?

    Sorry I should have made it clear. Yes the it will be always be inserted
    after the first 2 digits. I need to insert the period after the first 2
    digtis.

    26150G to 26.150G
    33207G to 33.207G
    03273G to 03.273G
    05069G to 05.069G and so on.

    Thanks

    JM


    "Peo Sjoblom" wrote:

    > What's the rule where to insert it, will it always be inserted after the 2
    > character like in 23.150G or what would the rule be?
    >
    > --
    > Regards,
    >
    > Peo Sjoblom
    >
    > (No private emails please)
    >
    >
    > "JM" <[email protected]> wrote in message
    > news:[email protected]...
    > > Hello, Is it possible to insert a period into the middle of a string of
    > > numbers? I have 800 numbers I need to change in A1 to A801. Can I do this
    > > without having to retype the entire column?
    > >
    > > Here's an example:
    > > I need to change 26150G to 26.150G
    > >
    > > Any help will be greatly appreciated.
    > > Thank You
    > >
    > > JM
    > >

    >
    >


  4. #4
    Dave Peterson
    Guest

    Re: How can I insert a period into exsisting cells?

    =left(a1,2)&"."&mid(a1,3,255)



    JM wrote:
    >
    > Sorry I should have made it clear. Yes the it will be always be inserted
    > after the first 2 digits. I need to insert the period after the first 2
    > digtis.
    >
    > 26150G to 26.150G
    > 33207G to 33.207G
    > 03273G to 03.273G
    > 05069G to 05.069G and so on.
    >
    > Thanks
    >
    > JM
    >
    > "Peo Sjoblom" wrote:
    >
    > > What's the rule where to insert it, will it always be inserted after the 2
    > > character like in 23.150G or what would the rule be?
    > >
    > > --
    > > Regards,
    > >
    > > Peo Sjoblom
    > >
    > > (No private emails please)
    > >
    > >
    > > "JM" <[email protected]> wrote in message
    > > news:[email protected]...
    > > > Hello, Is it possible to insert a period into the middle of a string of
    > > > numbers? I have 800 numbers I need to change in A1 to A801. Can I do this
    > > > without having to retype the entire column?
    > > >
    > > > Here's an example:
    > > > I need to change 26150G to 26.150G
    > > >
    > > > Any help will be greatly appreciated.
    > > > Thank You
    > > >
    > > > JM
    > > >

    > >
    > >


    --

    Dave Peterson

  5. #5
    JM
    Guest

    Re: How can I insert a period into exsisting cells?

    Than you very much! It worked perfectly!

    I appreciate your all you help.

    JM

    "Dave Peterson" wrote:

    > =left(a1,2)&"."&mid(a1,3,255)
    >
    >
    >
    > JM wrote:
    > >
    > > Sorry I should have made it clear. Yes the it will be always be inserted
    > > after the first 2 digits. I need to insert the period after the first 2
    > > digtis.
    > >
    > > 26150G to 26.150G
    > > 33207G to 33.207G
    > > 03273G to 03.273G
    > > 05069G to 05.069G and so on.
    > >
    > > Thanks
    > >
    > > JM
    > >
    > > "Peo Sjoblom" wrote:
    > >
    > > > What's the rule where to insert it, will it always be inserted after the 2
    > > > character like in 23.150G or what would the rule be?
    > > >
    > > > --
    > > > Regards,
    > > >
    > > > Peo Sjoblom
    > > >
    > > > (No private emails please)
    > > >
    > > >
    > > > "JM" <[email protected]> wrote in message
    > > > news:[email protected]...
    > > > > Hello, Is it possible to insert a period into the middle of a string of
    > > > > numbers? I have 800 numbers I need to change in A1 to A801. Can I do this
    > > > > without having to retype the entire column?
    > > > >
    > > > > Here's an example:
    > > > > I need to change 26150G to 26.150G
    > > > >
    > > > > Any help will be greatly appreciated.
    > > > > Thank You
    > > > >
    > > > > JM
    > > > >
    > > >
    > > >

    >
    > --
    >
    > Dave Peterson
    >


  6. #6
    Peo Sjoblom
    Guest

    Re: How can I insert a period into exsisting cells?

    Another way

    =SUBSTITUTE(A1,LEFT(A1,2),LEFT(A1,2)&".")

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "Dave Peterson" <[email protected]> wrote in message
    news:[email protected]...
    > =left(a1,2)&"."&mid(a1,3,255)
    >
    >
    >
    > JM wrote:
    >>
    >> Sorry I should have made it clear. Yes the it will be always be inserted
    >> after the first 2 digits. I need to insert the period after the first 2
    >> digtis.
    >>
    >> 26150G to 26.150G
    >> 33207G to 33.207G
    >> 03273G to 03.273G
    >> 05069G to 05.069G and so on.
    >>
    >> Thanks
    >>
    >> JM
    >>
    >> "Peo Sjoblom" wrote:
    >>
    >> > What's the rule where to insert it, will it always be inserted after
    >> > the 2
    >> > character like in 23.150G or what would the rule be?
    >> >
    >> > --
    >> > Regards,
    >> >
    >> > Peo Sjoblom
    >> >
    >> > (No private emails please)
    >> >
    >> >
    >> > "JM" <[email protected]> wrote in message
    >> > news:[email protected]...
    >> > > Hello, Is it possible to insert a period into the middle of a string
    >> > > of
    >> > > numbers? I have 800 numbers I need to change in A1 to A801. Can I do
    >> > > this
    >> > > without having to retype the entire column?
    >> > >
    >> > > Here's an example:
    >> > > I need to change 26150G to 26.150G
    >> > >
    >> > > Any help will be greatly appreciated.
    >> > > Thank You
    >> > >
    >> > > JM
    >> > >
    >> >
    >> >

    >
    > --
    >
    > Dave Peterson



  7. #7
    Dave Peterson
    Guest

    Re: How can I insert a period into exsisting cells?

    But watch out for things like:
    26260G



    Peo Sjoblom wrote:
    >
    > Another way
    >
    > =SUBSTITUTE(A1,LEFT(A1,2),LEFT(A1,2)&".")
    >
    > --
    > Regards,
    >
    > Peo Sjoblom
    >
    > (No private emails please)
    >
    > "Dave Peterson" <[email protected]> wrote in message
    > news:[email protected]...
    > > =left(a1,2)&"."&mid(a1,3,255)
    > >
    > >
    > >
    > > JM wrote:
    > >>
    > >> Sorry I should have made it clear. Yes the it will be always be inserted
    > >> after the first 2 digits. I need to insert the period after the first 2
    > >> digtis.
    > >>
    > >> 26150G to 26.150G
    > >> 33207G to 33.207G
    > >> 03273G to 03.273G
    > >> 05069G to 05.069G and so on.
    > >>
    > >> Thanks
    > >>
    > >> JM
    > >>
    > >> "Peo Sjoblom" wrote:
    > >>
    > >> > What's the rule where to insert it, will it always be inserted after
    > >> > the 2
    > >> > character like in 23.150G or what would the rule be?
    > >> >
    > >> > --
    > >> > Regards,
    > >> >
    > >> > Peo Sjoblom
    > >> >
    > >> > (No private emails please)
    > >> >
    > >> >
    > >> > "JM" <[email protected]> wrote in message
    > >> > news:[email protected]...
    > >> > > Hello, Is it possible to insert a period into the middle of a string
    > >> > > of
    > >> > > numbers? I have 800 numbers I need to change in A1 to A801. Can I do
    > >> > > this
    > >> > > without having to retype the entire column?
    > >> > >
    > >> > > Here's an example:
    > >> > > I need to change 26150G to 26.150G
    > >> > >
    > >> > > Any help will be greatly appreciated.
    > >> > > Thank You
    > >> > >
    > >> > > JM
    > >> > >
    > >> >
    > >> >

    > >
    > > --
    > >
    > > Dave Peterson


    --

    Dave Peterson

  8. #8
    Peo Sjoblom
    Guest

    Re: How can I insert a period into exsisting cells?

    Doh!

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "Dave Peterson" <[email protected]> wrote in message
    news:[email protected]...
    > But watch out for things like:
    > 26260G
    >
    >
    >
    > Peo Sjoblom wrote:
    >>
    >> Another way
    >>
    >> =SUBSTITUTE(A1,LEFT(A1,2),LEFT(A1,2)&".")
    >>
    >> --
    >> Regards,
    >>
    >> Peo Sjoblom
    >>
    >> (No private emails please)
    >>
    >> "Dave Peterson" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > =left(a1,2)&"."&mid(a1,3,255)
    >> >
    >> >
    >> >
    >> > JM wrote:
    >> >>
    >> >> Sorry I should have made it clear. Yes the it will be always be
    >> >> inserted
    >> >> after the first 2 digits. I need to insert the period after the first
    >> >> 2
    >> >> digtis.
    >> >>
    >> >> 26150G to 26.150G
    >> >> 33207G to 33.207G
    >> >> 03273G to 03.273G
    >> >> 05069G to 05.069G and so on.
    >> >>
    >> >> Thanks
    >> >>
    >> >> JM
    >> >>
    >> >> "Peo Sjoblom" wrote:
    >> >>
    >> >> > What's the rule where to insert it, will it always be inserted after
    >> >> > the 2
    >> >> > character like in 23.150G or what would the rule be?
    >> >> >
    >> >> > --
    >> >> > Regards,
    >> >> >
    >> >> > Peo Sjoblom
    >> >> >
    >> >> > (No private emails please)
    >> >> >
    >> >> >
    >> >> > "JM" <[email protected]> wrote in message
    >> >> > news:[email protected]...
    >> >> > > Hello, Is it possible to insert a period into the middle of a
    >> >> > > string
    >> >> > > of
    >> >> > > numbers? I have 800 numbers I need to change in A1 to A801. Can I
    >> >> > > do
    >> >> > > this
    >> >> > > without having to retype the entire column?
    >> >> > >
    >> >> > > Here's an example:
    >> >> > > I need to change 26150G to 26.150G
    >> >> > >
    >> >> > > Any help will be greatly appreciated.
    >> >> > > Thank You
    >> >> > >
    >> >> > > JM
    >> >> > >
    >> >> >
    >> >> >
    >> >
    >> > --
    >> >
    >> > Dave Peterson

    >
    > --
    >
    > Dave Peterson



  9. #9
    Peo Sjoblom
    Guest

    Re: How can I insert a period into exsisting cells?

    Oops Forgot the formula

    =SUBSTITUTE(A3,LEFT(A3,2),LEFT(A3,2)&".",1)

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "Dave Peterson" <[email protected]> wrote in message
    news:[email protected]...
    > But watch out for things like:
    > 26260G
    >
    >
    >
    > Peo Sjoblom wrote:
    >>
    >> Another way
    >>
    >> =SUBSTITUTE(A1,LEFT(A1,2),LEFT(A1,2)&".")
    >>
    >> --
    >> Regards,
    >>
    >> Peo Sjoblom
    >>
    >> (No private emails please)
    >>
    >> "Dave Peterson" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > =left(a1,2)&"."&mid(a1,3,255)
    >> >
    >> >
    >> >
    >> > JM wrote:
    >> >>
    >> >> Sorry I should have made it clear. Yes the it will be always be
    >> >> inserted
    >> >> after the first 2 digits. I need to insert the period after the first
    >> >> 2
    >> >> digtis.
    >> >>
    >> >> 26150G to 26.150G
    >> >> 33207G to 33.207G
    >> >> 03273G to 03.273G
    >> >> 05069G to 05.069G and so on.
    >> >>
    >> >> Thanks
    >> >>
    >> >> JM
    >> >>
    >> >> "Peo Sjoblom" wrote:
    >> >>
    >> >> > What's the rule where to insert it, will it always be inserted after
    >> >> > the 2
    >> >> > character like in 23.150G or what would the rule be?
    >> >> >
    >> >> > --
    >> >> > Regards,
    >> >> >
    >> >> > Peo Sjoblom
    >> >> >
    >> >> > (No private emails please)
    >> >> >
    >> >> >
    >> >> > "JM" <[email protected]> wrote in message
    >> >> > news:[email protected]...
    >> >> > > Hello, Is it possible to insert a period into the middle of a
    >> >> > > string
    >> >> > > of
    >> >> > > numbers? I have 800 numbers I need to change in A1 to A801. Can I
    >> >> > > do
    >> >> > > this
    >> >> > > without having to retype the entire column?
    >> >> > >
    >> >> > > Here's an example:
    >> >> > > I need to change 26150G to 26.150G
    >> >> > >
    >> >> > > Any help will be greatly appreciated.
    >> >> > > Thank You
    >> >> > >
    >> >> > > JM
    >> >> > >
    >> >> >
    >> >> >
    >> >
    >> > --
    >> >
    >> > Dave Peterson

    >
    > --
    >
    > Dave Peterson



  10. #10
    Dave Peterson
    Guest

    Re: How can I insert a period into exsisting cells?

    Ok!

    Peo Sjoblom wrote:
    >
    > Oops Forgot the formula
    >
    > =SUBSTITUTE(A3,LEFT(A3,2),LEFT(A3,2)&".",1)
    >
    > --
    > Regards,
    >
    > Peo Sjoblom
    >
    > (No private emails please)
    >
    > "Dave Peterson" <[email protected]> wrote in message
    > news:[email protected]...
    > > But watch out for things like:
    > > 26260G
    > >
    > >
    > >
    > > Peo Sjoblom wrote:
    > >>
    > >> Another way
    > >>
    > >> =SUBSTITUTE(A1,LEFT(A1,2),LEFT(A1,2)&".")
    > >>
    > >> --
    > >> Regards,
    > >>
    > >> Peo Sjoblom
    > >>
    > >> (No private emails please)
    > >>
    > >> "Dave Peterson" <[email protected]> wrote in message
    > >> news:[email protected]...
    > >> > =left(a1,2)&"."&mid(a1,3,255)
    > >> >
    > >> >
    > >> >
    > >> > JM wrote:
    > >> >>
    > >> >> Sorry I should have made it clear. Yes the it will be always be
    > >> >> inserted
    > >> >> after the first 2 digits. I need to insert the period after the first
    > >> >> 2
    > >> >> digtis.
    > >> >>
    > >> >> 26150G to 26.150G
    > >> >> 33207G to 33.207G
    > >> >> 03273G to 03.273G
    > >> >> 05069G to 05.069G and so on.
    > >> >>
    > >> >> Thanks
    > >> >>
    > >> >> JM
    > >> >>
    > >> >> "Peo Sjoblom" wrote:
    > >> >>
    > >> >> > What's the rule where to insert it, will it always be inserted after
    > >> >> > the 2
    > >> >> > character like in 23.150G or what would the rule be?
    > >> >> >
    > >> >> > --
    > >> >> > Regards,
    > >> >> >
    > >> >> > Peo Sjoblom
    > >> >> >
    > >> >> > (No private emails please)
    > >> >> >
    > >> >> >
    > >> >> > "JM" <[email protected]> wrote in message
    > >> >> > news:[email protected]...
    > >> >> > > Hello, Is it possible to insert a period into the middle of a
    > >> >> > > string
    > >> >> > > of
    > >> >> > > numbers? I have 800 numbers I need to change in A1 to A801. Can I
    > >> >> > > do
    > >> >> > > this
    > >> >> > > without having to retype the entire column?
    > >> >> > >
    > >> >> > > Here's an example:
    > >> >> > > I need to change 26150G to 26.150G
    > >> >> > >
    > >> >> > > Any help will be greatly appreciated.
    > >> >> > > Thank You
    > >> >> > >
    > >> >> > > JM
    > >> >> > >
    > >> >> >
    > >> >> >
    > >> >
    > >> > --
    > >> >
    > >> > Dave Peterson

    > >
    > > --
    > >
    > > Dave Peterson


    --

    Dave Peterson

  11. #11
    Registered User
    Join Date
    02-07-2023
    Location
    Rolla, MO USA
    MS-Off Ver
    10
    Posts
    1

    Re: How can I insert a period into exsisting cells?

    How do I put multiple periods in a cell. For example, my cell contains GX23NE00COM0000. I want it to be GX.23.NE00.COM00.00. Thanks for your help.

  12. #12
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,936

    Re: How can I insert a period into exsisting cells?

    Quote Originally Posted by chooter69 View Post
    How do I put multiple periods in a cell. For example, my cell contains GX23NE00COM0000. I want it to be GX.23.NE00.COM00.00. Thanks for your help.
    Administrative Note:

    Welcome to the forum.

    We are happy to help, however whilst you feel your request is similar to this thread, experience has shown that things soon get confusing when answers refer to particular cells/ranges/sheets which are unique to your post and not relevant to the original.

    Please see Forum Rule #4 about hijacking and start a new thread for your query.

    If you are not familiar with how to start a new thread see the FAQ: How to start a new thread
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

+ 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