Is there anyway to combine these 3 forloops
For Each sCell In Range(Cells(1, 4), Cells(5, 5))
If sCell.Formula Like "=+*" Then
PERFORM SAME INSTRUCTIONS
Next sCell
For Each sCell In Range(Cells(1, 7), Cells(5, 9))
If sCell.Formula Like "=+*" Then
PERFORM SAME INSTRUCTIONS
Next sCell
For Each sCell In Range(Cells(1, 11), Cells(5, 12))
If sCell.Formula Like "=+*" Then
PERFORM SAME INSTRUCTIONS
Next sCell
Basically so that instead of doing one region then the other and then the other, i just want it do everycell in columns 4 and 5 and then skip over to columns 7-9 and then 11-12 without using 3 different forloops thanks
For Each sCell In Range(Cells(1, 4), Cells(5, 5))
If sCell.Formula Like "=+*" Then
PERFORM SAME INSTRUCTIONS
Next sCell
For Each sCell In Range(Cells(1, 7), Cells(5, 9))
If sCell.Formula Like "=+*" Then
PERFORM SAME INSTRUCTIONS
Next sCell
For Each sCell In Range(Cells(1, 11), Cells(5, 12))
If sCell.Formula Like "=+*" Then
PERFORM SAME INSTRUCTIONS
Next sCell
Basically so that instead of doing one region then the other and then the other, i just want it do everycell in columns 4 and 5 and then skip over to columns 7-9 and then 11-12 without using 3 different forloops thanks