I am able to print out the values of each loop iteration when the step size is 1. Is there a way I can do the same with smaller step sizes? The code below is what I have been using when the step size is 1
For i = 1 To Height - 1
Moment = ((Load * i) / (3 * (Height ^ 2)) * ((Height ^ 2) - (i ^ 2)))
Application.Calculate
Sheet2.Range("A" & i).Value = i
Sheet2.Range("B" & i).Value = Moment
Next i