Since this is a homework assignment, you will have to be more specific with your questions.
Your original question
How could we configure this to automatically go to the next row of data?
In most cases, activecell.offset(1).select will select the cell 1 row down.
You may want to consider looking into loops as well if you are repeating an operation.
Run this loop example and look at sheet, "HAC FACTOR" to see what has happened.
Sub LoopExample()
Dim sh As Worksheet
Dim LsTrW As Long
Dim rNg As Range
Dim c As Range
Set sh = Sheets("HAC FACTOR")
With sh
LsTrW = .Cells(.Rows.Count, "A").End(xlUp).Row
Set rNg = .Range("A2:A" & LsTrW)
End With
For Each c In rNg.Cells
c.Offset(0, 6) = "Hello " & c
Next c
End Sub
Bookmarks