vote up 1 vote down star
1

How can I count to 10 while summing the numbers in VBA?

flag

75% accept rate

3 Answers

vote up 5 vote down check
Dim Sum as Integer
Sum = 0 

Dim I as Integer

For I = 1 to 10
    Sum = Sum + I
Next

Edit: For future reference, please refer to Microsoft's MSDN section on Visual Basic for Applications (VBA)

link|flag
Thank you, this was really hard. – Janie Jun 26 at 17:04
10  
Dim Sum, LOL ;) – WowtaH Jun 26 at 17:07
Hee hee, Lunchtime!!! – Janie Jun 26 at 17:10
Mmmmm, dim sum! – gnovice Jun 26 at 17:11
vote up -2 vote down

Why do you need to use VBA to do this, your using excel, couldn't you just put the numbers 1 to 10 in different cells and add them up. Why do you even need to use excel. Couldn't you just type 1+2+3+4+5+6+7+8+9+10 into a calculator. Why do you even need to use a calculator, why can't you just work it out in your head.

link|flag
If I had downvotes left, I'd downvote you just for being extremely late to this party. – TheTXI Jun 26 at 17:45
1  
Some of us can't handle two-digit addition in our heads, you insensitive clod. – Pesto Jun 26 at 17:46
1  
Um, because i'm trying to LEARN VBA. I'm familiar with calculators, thanks. – Janie Jun 26 at 17:48
vote up 4 vote down

The question is labeled VB6, so:

Dim Sum As Integer
Dim i As Integer
For i = 1 To 10
    Sum = Sum + i
Next i
link|flag
1  
@A: if you're really not worried about verbosity, use theVariableImUsingToCountToTenWith instead of i – Shog9 Jun 26 at 17:17
I like the anal retentive verbosity advocate who only uses his initial for his first name. – Rich B Jun 26 at 17:18
1  
@Shog9: if you're really not worried about verbosity, use 'iHaveNoIdeaWhetherThisWouldWorkAsAPossibleVariableNameInVBASoIGuessItIsWorthAShotSoIAmCreatingASuperLongVariableNameToHoldSoThatICanWriteAForLoopFromOneToTen' – TheTXI Jun 26 at 17:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.