Results 1 to 10 of 10

Copy source cell down a column

Threaded View

  1. #6
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Copy source cell down a column

    The charm of usedrange is that it is exactly what it's name indicates.
    The problem however is that many users do not realise that non-used rows or columns (left from of above data) are not part of the usedrange.
    But in the western world there's a strong tendency to work from the left upper corner to a right lower one. So more often than not cell A1 isn't empty.

    An alternative could be:
    Sub snb()
      For j = 111 To Sheets(1).Cells.SpecialCells(11).Row Step 7
        c01 = c01 & "," & Cells(j, 269).Address
      Next
      Range(Mid(c01, 2)) = Cells(104, 269).Formula
    End Sub
    Last edited by snb; 10-20-2010 at 04:23 PM.

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