+ Reply to Thread
Results 1 to 2 of 2

Help! How do I shift rows down?

  1. #1
    Registered User
    Join Date
    07-11-2005
    Posts
    38

    Exclamation Help! How do I shift rows down?

    Hi,

    I have a relatively simple task to ask. First, here is my code:


    Sub GetPWCPersonnel()

    Dim intRec As Integer, rngData As Range, rngItem As Range, rngAccounts As Range, rngOut As Range
    Dim mysht As Worksheet

    Application.ScreenUpdating = False

    For Each mysht In ThisWorkbook.Worksheets
    With mysht
    Set rngData = .Range("A71", .Range("A500").End(xlUp)).SpecialCells(xlCellTypeConstants)
    End With
    With Workbooks("Intermediary - PWC").Worksheets("sheet3")
    Set rngAccounts = .Range("A1:A" & .Range("A65536").End(xlUp).Row)
    End With

    For Each rngItem In rngData
    Set rngOut = rngAccounts.Find(What:=rngItem)

    If rngOut Is Nothing Then
    rngItem.Offset(0, 2).Value = "N/A"

    Else
    Set rngOut = rngOut.Offset(0, 1)
    Range(rngOut, _
    rngOut.End(xlDown).End(xlToRight)).Copy _
    Destination:=rngItem.Offset(0, 2)

    'need code here!!

    End If

    Next rngItem
    Next mysht
    End Sub

    How do I code it so that when it copies the information into the destination cell, it will shift all the rows down? Please help! Thanks in advance.

  2. #2
    Registered User
    Join Date
    06-16-2005
    Posts
    34
    Record a simple macro and it will show you how. Then copy it

+ 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