+ Reply to Thread
Results 1 to 2 of 2

Walk through code that copies data

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    08-14-2013
    Location
    LA Baby!!
    MS-Off Ver
    Excel 2007
    Posts
    1,598

    Walk through code that copies data

    Hello. Could someone please walk me through in detail what each part of this code is doing? Thanks

    Sub copypaste()
    
    Dim vDataArr As Variant
    Dim i As Long
    Dim j As Long
    
    vDataArr = Range("B3", Range("E" & Rows.Count).End(xlUp))
    
    For i = 1 To UBound(vDataArr, 2)
      For j = UBound(vDataArr, 1) To 1 Step -1
        If vDataArr(j, i) > 0 Then
          Exit For
        Else
          vDataArr(j, i) = ""
        End If
      Next j
    Next i
        
    Range("K3:N" & UBound(vDataArr, 1)).Value = vDataArr
    
    End Sub

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,240

    re: Walk through code that copies data

    Looks strangely familiar ...

    The first bit copies a range into an array based on the nimber of rows of data in column E.

    The outer loop processes each "column" in the array.

    The inner loop process each "row"/"cell" in the "column". If the value is 0, it replaces it with blank/null (""). If it is not zero, it exits the inner loop.

    The last part then copies the array back to the worksheet having replaced all zeroes below a non-zero value with blanks.

    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


+ 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. Fixing code that copies data between sheets. Need to un-hide the row.
    By Dremzy in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-15-2014, 09:43 AM
  2. Fixing code that copies data between sheets. Need to un-hide the row.
    By Dremzy in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-15-2014, 05:44 AM
  3. Replies: 6
    Last Post: 11-18-2013, 11:28 PM
  4. [SOLVED] Need help in fine tuning VBA code that copies row data to new sheet
    By naira in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-29-2013, 04:45 PM
  5. Run J-Walk Enhanced Data Form when a tab is selected
    By Badvgood in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-15-2010, 01:52 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