vba for next

montecarlo2012

Well-known Member
Joined
Jan 26, 2011
Messages
984
Office Version
  1. 2010
Platform
  1. Windows
Hello People.
VBA Code:
Sub Monte_Carlo()

Dim i As Integer

         For i = 2 To 16
                 Cells(i, 1) = i + Range("A1").Value - 2
         Next

End Sub
1618104958928.png

This is the result I got, but it is not what I am working on.
Expecting result is:
1618105117691.png

Please give me a hand here.
Thank you for reading this.
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Hi, a demonstration as a beginner starter :​
VBA Code:
Sub Demo1()
    [A2:A16].Formula = "=A$1+ROW()-2"
    [B2:E16].FormulaR1C1 = "=RC[-1]+15"
End Sub
➡️ Do you like it ? ⏩ So thanks to click on the bottom right ?Like icon ! ↘️
 
Upvote 0
Here's another way:

VBA Code:
Option Explicit
Sub Macro1()

    Dim i As Long, j As Long
    
    Application.ScreenUpdating = False
    
    For i = 2 To 16 'Row 2 to 16
        Cells(i, 1).Value = IIf(i = 2, Cells(i, 1).Offset(-1, 0), Cells(i, 1).Offset(-1, 0) + 1)
        For j = 2 To 5 'Columns B to E
            Cells(i, j).Value = Cells(i, j - 1).Value + 16 - 1
        Next j
    Next i
    
    Application.ScreenUpdating = True
    
End Sub

Though as Marc L's solution doesn't loop it is probably the preferred.

Regards,

Robert
 
Upvote 0
According to useless loop but with a single only, just for the fun :​
VBA Code:
Sub Demo2()
   Const R = 15
        N& = [A1].Value2
    For C% = 1 To 5
        Cells(2, C).Resize(R).Value2 = Evaluate("ROW(" & N & ":" & N + R - 1 & ")")
        N = N + R
    Next
End Sub
➡️ Do you like it ? ⏩ So thanks to click on the bottom right ?Like icon ! ↘️
 
Upvote 0
Or just with a single formula :​
VBA Code:
Sub Demo01()
    With [A2:E16]:  .Formula = "=$A$1+ROW()-2+(COLUMN()-1)*15":  .Formula = .Value2:  End With
End Sub
➡️ Do you like it ? ⏩ So thanks to click on the bottom right ?Like icon ! ↘️
 
Upvote 0
Try
VBA Code:
Sub Monte_Carlo()
Dim i As Integer, c As Integer
x = Range("A1").Value
For c = 1 To 5
For i = 2 To 16
        Cells(i, c) = x
        x = x + 1
Next i
        Cells(i, c) = x
Next c
End Sub
 
Upvote 0
Thank you Mr. Trebor, your code work for the specific question I post, was my fault I didn't say I was expecting to be able to change the ranges or dimensions, so when I change the parameter do not work.
Thank you again for your time.

Marc L.
Your code is flexible, I mean, let me change the numbers around and make it bigger my array IF I want.
Now, let me ask you, you are new (here, in this forum) but your code is really advance, I am impress
Can you PLEASE, have a little time to give me more insides about the logic behind the code, I mean how from my informal English descriptions you got the "resize" statement, I was expecting a simple loop and you really give me a heavy code, CONGRATULATIONS, you are good.
THANK YOU.
 
Upvote 0
Michael M thank you, but the code repeat the last number, at the beginning of the column, and when I expand the array the same this is your answer how looks like
1618109051511.png

as you see A17 = B2 etc, it is not expected this way.
Thank you for your time.
 
Upvote 0
SO, if you want a code you understand, why not my loop
VBA Code:
Sub Monte_Carlo()
Dim i As Integer, c As Integer
x = Range("A1").Value
For c = 1 To 5
For i = 2 To 16
        Cells(i, c) = x
        x = x + 1
Next i
        Cells(i, c) = x+1
Next c
End Sub
 
Upvote 0
Oops, try this
VBA Code:
Sub Monte_Carlo()
Dim i As Integer, c As Integer
x = Range("A1").Value
For c = 1 To 5
For i = 2 To 16
        Cells(i, c) = x
        x = x + 1
Next i
Next c
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,698
Members
448,979
Latest member
DET4492

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top