+ Reply to Thread
Results 1 to 2 of 2

Macro for Conditional Transpose

Hybrid View

  1. #1
    Registered User
    Join Date
    06-21-2011
    Location
    Mumbai, India
    MS-Off Ver
    Excel 2007
    Posts
    6

    Macro for Conditional Transpose

    Dear Team,

    I need a Macro which can Transpose a number of rows into columns based on a condition-

    Input Format-
    6/20/2011 8:34
    CELL 1 CDM 1
    NO CRC HEARTBEAT
    6/21/2011 21:07
    CELL 1 CDM 1
    SIGNALING LINK UP
    SIGNALING LINK UP but No calls
    INIT:CELL 2:SC!
    OK
    6/21/2011 21:07
    CELL 1 CDM 1
    NO CRC HEARTBEAT

    Output Format
    6/20/2011 8:34 CELL 1 CDM 1 NO CRC HEARTBEAT
    6/21/2011 21:07 CELL 1 CDM 1 SIGNALING LINK UP SIGNALING LINK UP but No calls INIT:CELL 2:SC! OK
    6/21/2011 21:07 CELL 1 CDM 1 NO CRC HEARTBEAT

    Find the attachment for better understandin of the problem and the kind of output I want.

    -Kundan Debnath
    Attached Files Attached Files

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Macro for Conditional Transpose

    Hello kundandebnath,

    Welcome to the Forum!

    I have added the macro below to a button on "Sheet1". This will transpose the data as you requested using the date.
    'Written: June 21, 2011
    'Author:  Leith Ross
    'Thread:  http://www.excelforum.com/excel-programming/781072-macro-for-conditional-transpose.html
    'Poster:  kundandebnath
    
    Sub ConditionalTranspose()
    
      Dim Cell As Range
      Dim DstData As Range
      Dim DstRng As Range
      Dim I As Long, R As Long
      Dim Rng As Range
      Dim RngEnd As Range
      Dim Wks As Worksheet
      
        Set Wks = Worksheets("Sheet1")
        Set Rng = Wks.Range("A3")
        Set DstRng = Wks.Range("C3")
          
          Set RngEnd = Wks.Cells(Rows.Count, Rng.Column).End(xlUp)
          If RngEnd.Row < Rng.Row Then Exit Sub
          Set Rng = Wks.Range(Rng, RngEnd)
        
          Application.ScreenUpdating = False
          
            For Each Cell In Rng
              If IsDate(Cell) Then
                I = 1
                  Do While Not IsDate(Cell.Offset(I, 0)) And Cell.Offset(I, 0) <> ""
                    I = I + 1
                  Loop
                Cell.Resize(I, 1).Copy
                DstRng.Offset(R, 0).PasteSpecial Paste:=xlPasteAll, Transpose:=True
                R = R + 1
              End If
            Next Cell
        
         Application.CutCopyMode = False
         Application.ScreenUpdating = True
         
    End Sub
    Attached Files Attached Files
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

+ 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