+ Reply to Thread
Results 1 to 4 of 4

Need help to separate numeric values into separate cells (LEFT and RIGHT won't work)

  1. #1
    Registered User
    Join Date
    01-27-2013
    Location
    United States
    MS-Off Ver
    Excel 2010
    Posts
    2

    Need help to separate numeric values into separate cells (LEFT and RIGHT won't work)

    Hi there,

    Let's say in cell A1 I have the number 1234.56
    Does anyone know a relatively easy way to separate the digits in the hundreds place and higher in one cell and the digits in the tens place and lower in another?

    For example, I want to take A1 and in one cell display "12" and in another cell display "34.56"

    Using the functions LEFT or RIGHT does not work for me because I need this to work no matter how many digits are in a cell. So the number 123.45 will be 1 and 23.45, the number 12.34 will be 0 and 12.34, the number 12345.67 will be 123 and 45.67 etc....

    I hope my question makes sense and thanks for any help you can give me!

  2. #2
    Forum Expert dredwolf's Avatar
    Join Date
    10-27-2012
    Location
    Clearwater,Canada
    MS-Off Ver
    Excel 2007
    Posts
    2,649

    Re: Need help to separate numeric values into separate cells (LEFT and RIGHT won't work)

    Try this :
    B1: =INT(A1/100)
    C1: =MOD(A1,100)

    hope this helps
    A picture may be worth a thousand words, BUT, a sample Workbook is worth a thousand screenshots!
    -Add a File - click advanced (next to quick post), scroll to manage attachments, click, select add files, click select files, select file, click upload, when file shows up at bottom left, click done (bottom right), click submit
    -To mark thread Solved- go top of thread,click Thread Tools,click Mark as Solved
    If you received helpful response, please remember to hit the * of that post

  3. #3
    Registered User
    Join Date
    01-27-2013
    Location
    United States
    MS-Off Ver
    Excel 2010
    Posts
    2

    Re: Need help to separate numeric values into separate cells (LEFT and RIGHT won't work)

    Awesome! This is exactly what I needed, thanks so much for the quick response!

  4. #4
    Forum Expert dredwolf's Avatar
    Join Date
    10-27-2012
    Location
    Clearwater,Canada
    MS-Off Ver
    Excel 2007
    Posts
    2,649

    Re: Need help to separate numeric values into separate cells (LEFT and RIGHT won't work)

    You are welcome !

    Please remember to mark the thread as solved if you are satisfied with your solution :
    To mark thread "Solved", go to the top of the thread,click "Thread Tools",click "Mark as Solved"

+ 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