I am stuck on figuring out on how to fill down my formulas from the activecell selection to the last row used in column AK. Please keep in mind that the active cell can always be in a different spot of the excel spreadsheet.
Dim LRw As Long
ActiveCell.Select
ActiveCell.Formula = "1"
LRw = Range("AK" & Rows.Count).End(xlUp).Row
Range(ActiveCell, LRw).FillDown
Dim LRw As Long
ActiveCell.Select
ActiveCell.Formula = "1"
LRw = Range("AK" & Rows.Count).End(xlUp).Row
Range(ActiveCell, LRw).FillDown