+ Reply to Thread
Results 1 to 2 of 2

Loop though rows and move data

Hybrid View

  1. #1
    Registered User
    Join Date
    08-10-2011
    Location
    Bowling Green, KY
    MS-Off Ver
    Excel 2003
    Posts
    37

    Loop though rows and move data

    Hi everyone, hope someone can help.

    I would like to be able to compare the number in column A and if they are the same, move the row underneath the first in the set over to the right.

    I have attached an excel sheet showing dummy data of how I would like it to look.

    Thanks in advance.

    Also if someone could point to towards some good learning material for advanced VBA I would appreciate that too.
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: Loop though rows and move data

    See if this works for you:

    Sub SortData()
    
    Const lFIRST_DATA_ROW = 2
    Const lFIRST_DATA_COL = 1
    Const lCOLUMN_COUNT = 3
    
    Dim lRowLoop As Long
    Dim vCurrentValue As Variant
    Dim lOutCol As Long
    Dim rngSourceRange As Range
    Dim rngDestinationRange As Range
    
    Application.EnableEvents = False
    
    With ActiveSheet
    
      vCurrentValue = .Cells(lFIRST_DATA_ROW, lFIRST_DATA_COL).Value
      lRowLoop = lFIRST_DATA_ROW + 1
      lOutCol = lFIRST_DATA_COL + lCOLUMN_COUNT
      
      While .Cells(lRowLoop, lFIRST_DATA_COL).Value <> ""
      
        If .Cells(lRowLoop, lFIRST_DATA_COL).Value = vCurrentValue Then
          
          Set rngDestinationRange = .Range(.Cells(lRowLoop - 1, lFIRST_DATA_COL + lCOLUMN_COUNT), .Cells(lRowLoop - 1, lFIRST_DATA_COL + (2 * lCOLUMN_COUNT) - 1))
          Set rngSourceRange = .Range(.Cells(lRowLoop, lFIRST_DATA_COL), .Cells(lRowLoop, lFIRST_DATA_COL + lCOLUMN_COUNT - 1))
          
          rngDestinationRange.Value = rngSourceRange.Value
          rngSourceRange.Cells.Clear
          
        Else
          
          vCurrentValue = .Cells(lRowLoop, lFIRST_DATA_COL).Value
          
        End If
        
        lRowLoop = lRowLoop + 1
        
      Wend
      
    End With
    
    Application.EnableEvents = True
      
    End Sub

+ 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