PDA

View Full Version : A For Loop statement to display a message to the user from 1 to 4



wedd
11-11-2010, 12:46 PM
Is it possible to write a code VBA For Loop statement to display a message to the user from 1 to 4? If so, how can this be done?



Thanks for your contributions :friends:

hansup
11-11-2010, 12:53 PM
1 to 4 what?

HiTechCoach
11-11-2010, 10:37 PM
For I = 1 to 4
MsgBox I

Next I

wedd
11-13-2010, 11:20 AM
Thanks!

HiTechCoach
11-13-2010, 12:36 PM
You're welcome. :)