Oliver has attended:
Excel VBA Intro Intermediate course
How do I do loops?
Hey Garry,
How do I do loops in my speadsheet?
RE: How do I do loops?
try this
Sub Example2()
For x = 1 To 5
if activecell > 10 then
Selection.font.colorindex=3
end if
activecell.offset(1,0).select
Next x
End Sub
try this