Hello and thank you for viewing. I have an issue with a FillDown command in the following VBA code. The formula being entered into BX2 simply formats 3 columns of data into M/D/Y date format. The code is then designed to fill that formula down until the last row of data in the sheet. For some reason I get a runtime error at: Range("BX2:BX" & LastRow).FillDown
When I step in, it runs the formula in BX2 but does not fill down the formula even though there is data in the rows down to BX500 or so.
Any ideas on what would cause the .FillDown command to fail would be greatly appreciated.
Thank you!
When I step in, it runs the formula in BX2 but does not fill down the formula even though there is data in the rows down to BX500 or so.
Code:
Range("BX2").Select ActiveCell.FormulaR1C1 = "=RC[-2]&""/""&RC[-1]&""/""&RC[-3]"
Range("BX2").Select
Range("BX2:BX" & LastRow).FillDown
Columns("BX:BX").Select
Any ideas on what would cause the .FillDown command to fail would be greatly appreciated.
Thank you!