I hope there is a quick alteration to this script below. This is generally the script I use whenever I need to autofill a column in a spreadsheet. How do I alter this in a case where the cell I want to autofill changes (dyanamic). Until now, it has always started in the 2nd row but this time it could change. I tried defining "FirstRow" by active cell without any luck. Thanks for your help.
Code:
Range("O2").Select
LastRow = Range("A65536").End(xlUp).Row
Selection.AutoFill Destination:=Range("O2:O" & LastRow)