Solution:
Option Compare Text
Sub FillOutFast()
i = 0 'column offset
j = 18
'MsgBox "The value of the cell is: " & Worksheets(Task List).Range("A2").Offset(j, i).Value
'MsgBox "The value of the cell is: " & Worksheets(Task List).Range("A2").Offset(j, i + 1).Value
'MsgBox "The value of the cell is: " & Worksheets(Task List).Range("A2").Offset(j, i + 2).Value
'MsgBox "The value of the cell is: " & Worksheets(Task List).Range("A2").Offset(j, i + 3).Value
'MsgBox "The value of the cell is: " & Worksheets(Task List).Range("A2").Offset(j, i + 4).Value
'Whichever cell/column/row you use for your offset should be a standard size, if it's larger or merged,
'the offset will affect which cell it considers offset +1, offset +2, etc.
For j = 18 To 99 ' rows
If Not Worksheets(Task List).Range("A2").Offset(j, i + 2).Value = "" Then
If Worksheets(Task List).Range("A2").Offset(j, i + 2).Value = "Easter egg hunt" Then
Worksheets(Task List).Range("A2").Offset(j, i + 7).Value = "Prepare Eggs"
Worksheets(Task List).Range("A2").Offset(j, i + 8).Value = "Prepare Food"
Worksheets(Task List).Range("A2").Offset(j, i + 9).Value = "Clean up"
End If
'add as many if statements here as you want.
End If
Next j
End Sub
I would have liked to have done it with a while statement, and used the method of activesheet.cells to control the cells so I could have used a variable without having to use an offset, and I would have preferred a case statement, so if anyone can write one to do it that way and verify it is working, please post it here for the archive.
Bookmarks