Forum home » Delegate support and help forum » Microsoft VBA Training and help » vba courses london - How do I do loops?
vba courses london - How do I do loops?
Resolved · Low Priority · Version Standard
Oliver has attended:
Excel VBA Intro Intermediate course
How do I do loops?
Hey Garry,
How do I do loops in my speadsheet?
For upcoming training course dates see: Pricing & availability
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
|
