View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
AlexJarvis AlexJarvis is offline
external usenet poster
 
Posts: 6
Default Dragging values down a range using a colum to determine its le

Wow! That was much easier than I thought it was going to be.

Thank you.

-A

"Mike H" wrote:

Hi,

Assuming we have something in B1, this fills down col B as far asa there are
data in Col A

Dim LastRow As Long
LastRow = Cells(Cells.Rows.Count, "A").End(xlUp).Row
Range("B1").AutoFill Destination:=Range("B1:B" & LastRow)
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"AlexJarvis" wrote:

Is is possible to write a macro that drags values (or formuals) down a column
to the length of an adjacent column, like when you double click on little
square in the right corner of the box that indicates when a cell is selected?

For this question, I need the formula or data that is in the selected cell
to repeat for all cells in the adjacent column that have values. How do I do
this?