I have a worksheet were I enter small amounts of data over and over.
I set up this macro to enter the data. (Actually I set up two macros: One for “Yes” and one for “No”)
Sub FillItIn()
Range("A3").Select
ActiveCell.FormulaR1C1 = "Joe Blow"
Range("B3").Select
ActiveCell.FormulaR1C1 = "Supervisor"
Range("C3").Select
ActiveCell.FormulaR1C1 = "Yes"
Range("D3").Select
End Sub
What I need is for the Macro to move to the first empty row on the worksheet before executing. As you can see my macro always places the data in the same three cells.
Any help will be appreciated….
Accel45
I set up this macro to enter the data. (Actually I set up two macros: One for “Yes” and one for “No”)
Sub FillItIn()
Range("A3").Select
ActiveCell.FormulaR1C1 = "Joe Blow"
Range("B3").Select
ActiveCell.FormulaR1C1 = "Supervisor"
Range("C3").Select
ActiveCell.FormulaR1C1 = "Yes"
Range("D3").Select
End Sub
What I need is for the Macro to move to the first empty row on the worksheet before executing. As you can see my macro always places the data in the same three cells.
Any help will be appreciated….
Accel45