Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Nice touch Bob. I never even though of using Application.Run. Note to the OP
however is that Application.Run has a bit of overhead associated with its use. In this case it is probably not a big deal but just be aware that there is a performace hit for using it. If the loop was a few thousand instead of just a few it could become noticable... -- HTH... Jim Thomlinson "Bob Phillips" wrote: sub sProblem() for i =1 to 3 Application.run "sbTst" & i next end sub -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "x taol" wrote in message ... sub sbTst() msgbox 1 end sub sub sbTst2() msgbox 12 end sub sub sbTst3() msgbox 13 end sub sub sProblem() for i =1 to 3 call "sbTst" & i next end sub This code not work. How can I using Loop.? *** Sent via Developersdex http://www.developersdex.com *** |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sum (throw out highest and lowest) | Excel Worksheet Functions | |||
Store hidden information in Excel throw Add-In | Excel Discussion (Misc queries) | |||
How do I set up a formula to throw out the 2 lowest scores? | Excel Worksheet Functions | |||
Color Cell throw macro | Excel Programming | |||
How can I navigate throw multiple Web pages... | Excel Programming |