+ Reply to Thread
Results 1 to 19 of 19

Splitting Data Into Separate Cells

  1. #1
    Registered User
    Join Date
    06-27-2013
    Location
    Detroit, Michigan
    MS-Off Ver
    Microsoft 2013
    Posts
    36

    Splitting Data Into Separate Cells

    Hi,
    I need help splitting up the data in one cell into separate cells. This is probably really basic but I have tried using Text To Columns and Left-Mid-Right functions but cannot seem to make anything work. Attached is an example of what I am working with. Thanks in advance for your help!
    Thanks
    Attached Files Attached Files

  2. #2
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Splitting Data Into Separate Cells

    Try below code.
    Please Login or Register  to view this content.
    However, there is 1 exception that I see in your data.
    Row 20 has following data:
    VT 2.2-5.0, VT1-2.5

    How should this line be treated?
    Last edited by CK76; 04-06-2017 at 08:40 AM.

  3. #3
    Valued Forum Contributor PFDave's Avatar
    Join Date
    05-17-2012
    Location
    Milton Keynes, England
    MS-Off Ver
    Excel 2013
    Posts
    1,067

    Re: Splitting Data Into Separate Cells

    Try: in B2 and drag across and down

    Formula: copy to clipboard
    Please Login or Register  to view this content.

  4. #4
    Registered User
    Join Date
    06-24-2016
    Location
    Slovakia
    MS-Off Ver
    MS Office 365
    Posts
    92

    Re: Splitting Data Into Separate Cells

    Hi, I added there some functions, hopefully it is doing exactly what you want

    Check and let me know.
    Attached Files Attached Files
    Have a fantastic day

  5. #5
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Splitting Data Into Separate Cells

    Enter in B2 and copy across and down
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Attached Files Attached Files
    Last edited by AlKey; 04-06-2017 at 08:46 AM.
    If you like my answer please click on * Add Reputation
    Don't forget to mark threads as "Solved" if your problem has been resolved

    "Nothing is so firmly believed as what we least know."
    --Michel de Montaigne

  6. #6
    Registered User
    Join Date
    06-27-2013
    Location
    Detroit, Michigan
    MS-Off Ver
    Microsoft 2013
    Posts
    36

    Re: Splitting Data Into Separate Cells

    THANK YOU for everyone's help. Your solutions helped me out greatly. Thanks again.

  7. #7
    Registered User
    Join Date
    06-27-2013
    Location
    Detroit, Michigan
    MS-Off Ver
    Microsoft 2013
    Posts
    36

    Re: Splitting Data Into Separate Cells

    Hi CK76,
    To answer your question below. If it returned some kind of error that would be great. The macro works great.
    Thanks

    "However, there is 1 exception that I see in your data.
    Row 20 has following data:
    VT 2.2-5.0, VT1-2.5

    How should this line be treated?"

  8. #8
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Splitting Data Into Separate Cells

    Try below code then. It will put Error message in VT3 column.
    Please Login or Register  to view this content.

  9. #9
    Registered User
    Join Date
    06-27-2013
    Location
    Detroit, Michigan
    MS-Off Ver
    Microsoft 2013
    Posts
    36

    Re: Splitting Data Into Separate Cells

    Quote Originally Posted by CK76 View Post
    Try below code then. It will put Error message in VT3 column.
    Thanks for the help again. New code works great!

  10. #10
    Registered User
    Join Date
    06-27-2013
    Location
    Detroit, Michigan
    MS-Off Ver
    Microsoft 2013
    Posts
    36

    Re: Splitting Data Into Separate Cells

    Quote Originally Posted by CK76 View Post
    Try below code then. It will put Error message in VT3 column.
    Hi Again CK76,
    Hate to bother you. But, I got a new set of data an was wondering if you could make one more tweak to your code. Attached is a new example of what I am working with. The VT columns already have a values in them. I would like the code the leave what is already in the cell if it is not being replaced. Your help is greatly appreciated.
    Thanks again!
    Attached Files Attached Files

  11. #11
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Splitting Data Into Separate Cells

    It's bit unclear what's needed.

    Let me see if I understood it right.

    If any value is already present in B:D range (other than 0 or blank) then update value. Otherwise leave it alone?

    Or do you want to keep 0 as well?

  12. #12
    Registered User
    Join Date
    06-27-2013
    Location
    Detroit, Michigan
    MS-Off Ver
    Microsoft 2013
    Posts
    36

    Re: Splitting Data Into Separate Cells

    Quote Originally Posted by ck76 View Post
    it's bit unclear what's needed.

    Let me see if i understood it right.

    If any value is already present in b:d range (other than 0 or blank) then update value. Otherwise leave it alone?

    Or do you want to keep 0 as well?
    Hi CK76,
    Sorry for not being more clear. But, your assumption is correct. I want to leave whatever is in the b:d range unless it gets replaced by what is in the DATA column. Hope this helps.
    Thanks

    BEFORE RUNNING CODE
    data vt1 vt2 vt3
    vt2-2.467, vt3-5.002 1.2 0 0
    vt3-4 2.2 0 0

    AFTER RUNNING CODE
    data vt1 vt2 vt3
    vt2-2.467, vt3-5.002 1.2 2.467 5.002
    vt3-4 2.2 0 4

  13. #13
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Splitting Data Into Separate Cells

    Edit: Code removed as I found error. Will get back once it's been fixed.

    This ought to do it.
    Please Login or Register  to view this content.
    Last edited by CK76; 05-11-2017 at 12:14 PM.

  14. #14
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Splitting Data Into Separate Cells

    It looks like the data is now more organized on you last upload than the original spreadsheet you provided.
    Enter in B2 and copy across and down
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    Please see attached file
    Attached Files Attached Files

  15. #15
    Registered User
    Join Date
    06-27-2013
    Location
    Detroit, Michigan
    MS-Off Ver
    Microsoft 2013
    Posts
    36

    Re: Splitting Data Into Separate Cells

    Quote Originally Posted by CK76 View Post
    Edit: Code removed as I found error. Will get back once it's been fixed.

    This ought to do it.
    Hi CK76,
    The updated code is working great. Thanks for taking all this time to help me out.
    Thanks again!

  16. #16
    Registered User
    Join Date
    06-27-2013
    Location
    Detroit, Michigan
    MS-Off Ver
    Microsoft 2013
    Posts
    36

    Re: Splitting Data Into Separate Cells

    Quote Originally Posted by AlKey View Post
    It looks like the data is now more organized on you last upload than the original spreadsheet you provided.
    Enter in B2 and copy across and down
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    Please see attached file
    Hi Alkey,
    Thanks for the for the help. Your formula is another great option to complete my task.
    Thanks for your time.

  17. #17
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Splitting Data Into Separate Cells

    You are welcome

  18. #18
    Registered User
    Join Date
    06-27-2013
    Location
    Detroit, Michigan
    MS-Off Ver
    Microsoft 2013
    Posts
    36

    Re: Splitting Data Into Separate Cells

    Quote Originally Posted by CK76 View Post
    Edit: Code removed as I found error. Will get back once it's been fixed.

    This ought to do it.
    Please Login or Register  to view this content.
    Hi All,
    I use this code from CK76 all the time and it has worked perfectly for years. Recently the way I receive the data has changed. I was hoping that CK76 or someone could help update the code to adjust for the change. Attached is a spreadsheet with an example of the update. Any help greatly appreciated.
    Thanks
    Attached Files Attached Files

  19. #19
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,712

    Re: Splitting Data Into Separate Cells

    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
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Splitting Cells with multiple values into separate rows
    By dracon6 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-19-2014, 12:53 AM
  2. [SOLVED] Splitting formula Values from one cell into separate cells
    By thegrandmaster in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 12-05-2013, 02:17 AM
  3. [SOLVED] Splitting a string of numbers into separate cells: where to even begin?
    By confused_teacher in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 06-03-2013, 02:33 PM
  4. Splitting Text Into Separate Cells By Paragraph
    By Dardar1989 in forum Excel General
    Replies: 4
    Last Post: 03-15-2013, 08:31 PM
  5. Splitting data into separate worksheets
    By Supernowsky in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-22-2012, 01:19 PM
  6. splitting text into separate cells
    By kristygrippo in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-24-2009, 05:54 PM
  7. Splitting multi-line cells into separate rows
    By jazzper in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 03-23-2009, 06:19 PM

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