+ Reply to Thread
Results 1 to 12 of 12

Separating text in one cell into individual cells

Hybrid View

Hblbs Separating text in one cell... 01-09-2009, 12:11 PM
mewingkitty Definitely possible 01-09-2009, 12:24 PM
Hblbs Hi Mew, I add these in... 01-09-2009, 12:47 PM
mdbct Insert a sheet called... 01-09-2009, 05:16 PM
Hblbs Hi, thanks for the code, it... 01-11-2009, 03:28 PM
mewingkitty eep 01-12-2009, 10:54 PM
Hblbs Hi mewingkitty, This... 01-14-2009, 09:01 AM
Hblbs Bump to see if anyone can... 01-20-2009, 05:58 AM
mdbct Here is a combined version ... 01-20-2009, 11:03 AM
Hblbs Thanks mdbct, this works and... 01-22-2009, 06:22 AM
  1. #1
    Registered User
    Join Date
    09-24-2008
    Location
    UK
    Posts
    75
    Hi, thanks for the code, it works up to a point. For some reason it does not separate text to columns, the data is all in one cell, a message box appears after the Macro is run "Microsoft Visual Basic . X . 400". Also it does not include the other 3 cells directly below which need to be aligned to the same row and if possible the headings too, although none of the colouring is needed.

    Thank you for taking the time to create this though as it still save me vast amounts of time as I do this a number of times during the week. Appreciate any/all other input in this. Thanks
    Last edited by Hblbs; 01-11-2009 at 03:49 PM. Reason: deleted spurious quote

  2. #2
    Forum Contributor mewingkitty's Avatar
    Join Date
    09-29-2008
    Location
    Fort McMurray, Alberta, Canada
    MS-Off Ver
    Excel 2003
    Posts
    949

    eep

    I wrote one that had some kinks in it, but never finished it off because I saw someone else post here. I'll send it your way tomorrow if you still don't have an answer by then.

    mew.

    Eh
    re-wrote one, it's pretty... crude.

    Works, mostly, not sure what's happening with the format of the dates half way through though. So yeah, save a copy of the original. :P

    mew
    Attached Files Attached Files
    Last edited by mewingkitty; 01-13-2009 at 12:09 AM.
    =IF(AND(OR(BLONDE,BRUNETTE,REDHEAD),OR(MY PLACE,HER PLACE),ME),BOW-CHICKA-BOW-WOW,ANOTHER NIGHT ON THE INTERNET)

  3. #3
    Registered User
    Join Date
    09-24-2008
    Location
    UK
    Posts
    75
    Hi mewingkitty,

    This mostly does what is required, but in the formatted report it does not pick up some data, mainly in the exclude from stats column, but mostly it misses out indexing the data according to D or C and HB or CTB.

    Thanks for yours and mdbct's contribution, your macro includes most of the data and mdbct's includes the indexing aspect required. If anyone knows how to combine aspects of the two it would be appreciated.

    Thanks in advance.

  4. #4
    Registered User
    Join Date
    09-24-2008
    Location
    UK
    Posts
    75
    Bump to see if anyone can help as I'm hopeless at VBA.

    What I'm looking is a combination of the 2 codes provided so far, the code by Mewingkitty separates all the data I need and the code by mdbct indexes the data the way I need it.

    If anyone can help, it would be appreciated. Thanks

  5. #5
    Valued Forum Contributor mdbct's Avatar
    Join Date
    11-11-2005
    Location
    CT
    MS-Off Ver
    2003 & 2007
    Posts
    848
    Here is a combined version
    
    Sub combineDate()
        Dim strLong As String, i As Long, lRow As Long, lStart As Long
        Dim strAlpha As String, strCat As String, iGap As String, lTransRow As Long
        lRow = Cells(Rows.Count, 1).End(xlUp).Row
        lTransRow = 10
        For i = 1 To lRow
            If InStr(Cells(i, 1), "BREAKDOWN") > 0 Then
                lStart = i
            End If
        Next
    
        For i = lStart To lRow
            If InStr(Cells(i, 1), "Records") > 0 Then
                strAlpha = Left(Cells(i, 1), 1)
                strCat = Replace(Mid(Cells(i, 1), InStr(Cells(i, 1), "(") + 1, 3), ")", "")
            End If
    
    
            If InStr(Cells(i, 1), "/") > 0 Then
    lTransRow = lTransRow + 1
    Worksheets("Formatted Report").Cells(lTransRow, 1).NumberFormat = "@"
    Worksheets("Formatted Report").Cells(lTransRow, 1) = Mid(Cells(i, 1), 2, 3)
    Worksheets("Formatted Report").Cells(lTransRow, 2).NumberFormat = "@"
    Worksheets("Formatted Report").Cells(lTransRow, 2) = Mid(Cells(i, 1), 12, 8)
    Worksheets("Formatted Report").Cells(lTransRow, 3) = Mid(Cells(i, 1), 21, 3)
    Worksheets("Formatted Report").Cells(lTransRow, 4) = Mid(Cells(i, 1), 33, 23)
    Worksheets("Formatted Report").Cells(lTransRow, 5) = Mid(Cells(i, 1), 57, 23)
    Worksheets("Formatted Report").Cells(lTransRow, 6) = Mid(Cells(i + 1, 2), 2, 23)
    Worksheets("Formatted Report").Cells(lTransRow, 7) = Mid(Cells(i + 1, 2), 38, 23)
    Worksheets("Formatted Report").Cells(lTransRow, 8) = Cells(i + 2, 2)
    Worksheets("Formatted Report").Cells(lTransRow, 9) = Cells(i + 3, 2)
    Worksheets("Formatted Report").Cells(lTransRow, 10) = strAlpha
    Worksheets("Formatted Report").Cells(lTransRow, 11) = strCat
    
            End If
    
    
        Columns("D:G").NumberFormat = "dd/mm/yyyy h:mm:ss"
        Next
    
    
    
    End Sub

  6. #6
    Registered User
    Join Date
    09-24-2008
    Location
    UK
    Posts
    75
    Thanks mdbct, this works and picks up all the data.

    The only thing is that the date format for D:G does not seem to work on CTB records. When I try to insert a formula for cells E and F it does not seem to work for CTB records. Here is the formula :-

    =INT(F2)-INT(E2)+1
    The error message in the cell is #VALUE!.

    Essentially I'm trying to join your code to my own whic does not seem to be working, I can post it up if you'd like. Otherwise any help on this is appreciated.
    Last edited by Hblbs; 01-22-2009 at 06:25 AM.

  7. #7
    Valued Forum Contributor mdbct's Avatar
    Join Date
    11-11-2005
    Location
    CT
    MS-Off Ver
    2003 & 2007
    Posts
    848
    the formatting issue was because I forgot to specify the sheet whose columns were to be formatted.

    The CTB issue is due to there being a space in front of the time, so Excel is interpreting it as a text value instead of a Date Time value.

    Try this version.
    Sub combineDate()
        Dim strLong As String, i As Long, lRow As Long, lStart As Long
        Dim strAlpha As String, strCat As String, iGap As String, lTransRow As Long
        lRow = Cells(Rows.Count, 1).End(xlUp).Row
        lTransRow = 10
        For i = 1 To lRow
            If InStr(Cells(i, 1), "BREAKDOWN") > 0 Then
                lStart = i
            End If
        Next
    
        For i = lStart To lRow
            If InStr(Cells(i, 1), "Records") > 0 Then
                strAlpha = Left(Cells(i, 1), 1)
                strCat = Replace(Mid(Cells(i, 1), InStr(Cells(i, 1), "(") + 1, 3), ")", "")
            End If
    
    
            If InStr(Cells(i, 1), "/") > 0 Then
    lTransRow = lTransRow + 1
    Worksheets("Formatted Report").Cells(lTransRow, 1).NumberFormat = "@"
    Worksheets("Formatted Report").Cells(lTransRow, 1) = Mid(Cells(i, 1), 2, 3)
    Worksheets("Formatted Report").Cells(lTransRow, 2).NumberFormat = "@"
    Worksheets("Formatted Report").Cells(lTransRow, 2) = Mid(Cells(i, 1), 12, 8)
    Worksheets("Formatted Report").Cells(lTransRow, 3) = Mid(Cells(i, 1), 21, 3)
    Worksheets("Formatted Report").Cells(lTransRow, 4) = Trim(Mid(Cells(i, 1), 33, 23))
    Worksheets("Formatted Report").Cells(lTransRow, 5) = Trim(Mid(Cells(i, 1), 57, 23))
    Worksheets("Formatted Report").Cells(lTransRow, 6) = Trim(Mid(Cells(i + 1, 2), 2, 23))
    Worksheets("Formatted Report").Cells(lTransRow, 7) = Trim(Mid(Cells(i + 1, 2), 38, 23))
    Worksheets("Formatted Report").Cells(lTransRow, 8) = Cells(i + 2, 2)
    Worksheets("Formatted Report").Cells(lTransRow, 9) = Cells(i + 3, 2)
    Worksheets("Formatted Report").Cells(lTransRow, 10) = strAlpha
    Worksheets("Formatted Report").Cells(lTransRow, 11) = strCat
    Worksheets("Formatted Report").Cells(lTransRow, 12).Formula = "=INT(F" & lTransRow & ")-INT(E" & lTransRow & ")+1"
           End If
    
    
    Next
    
    Worksheets("Formatted Report").Columns("D:G").NumberFormat = "yyyy-mm-dd hh:mm:ss.00"
    Worksheets("Formatted Report").Columns("L").NumberFormat = "General"
    
    End Sub

    Addendum: I forgot to mention that I added your formula to the L column
    Last edited by mdbct; 01-22-2009 at 10:12 AM. Reason: Addendum

+ 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