Question : VBA, Copy cell contents down.

I am selecting a cell and placing a formula in it.  I would like to copy that result down the column to match the number of rows that are in the column to its left. (column to left has no blanks, but may have a formula in it).  After copy populates the new column, go back and remove the formulas and do a paste special>values.

Please advise and thanks.
RWayneH

Answer : VBA, Copy cell contents down.

Can I answer my own post?  I finally figured this out.
1:
2:
3:
4:
Range("AT7").Select
    ActiveCell.FormulaR1C1 = "=SexInput"
    Range(ActiveCell, Cells(Rows.Count, ActiveCell.Column - 1).End(xlUp).Offset(, 1)).Value = ActiveCell.Value
    
Random Solutions  
 
programming4us programming4us