I'm new to VBA and could greatly use some help using the Autofill/Filldown functions.
I'm setting up a macro to incorporate a Vlookup formula in cells of the first empty column of a new worksheet.
This works well for the first cell, but I am having trouble in copying the formula down to all of the cells in spreadsheet (or at least to row 450), using the autofill/filldown functions, as I do not know how to do this without defining the range. I cannot define the range as it will vary each time..
ActiveSheet.Range("IV1").End(xlToLeft).Offset(, 1).Formula = "=VLOOKUP(B2,Plate.xlsm!$R$3:$S$10,2,FALSE)"
Please help!