VBA - For i= 1 To "value in a cell XY"

jaspalsd

Board Regular
Joined
Feb 3, 2014
Messages
74
Hi,

I wish to define the limit for i in a loop by referencing a calculated value within a cell.

I could use the lastRow method in order to determine when to end the loop but is there a way to say for example:

"For i = 6 To (value in cell A2)" or must it be manually typed within the code? I am able to determine what the limit (last row) is using a calculation when my range changes for the list of items.

No problems if it is too much work as I have previously used code that stops at the LastRow of text.
Thanks,

Jas
 
Last edited:

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
All you need is to get the value

Dim EndLp As Integer
EndLp = Worksheets("Sheet1").Range("I1").Value

then For i = 6 to EndLp
 
Upvote 0
Code:
For i = 6 to Worksheets("Sheet1").Range("[B]A2[/B]").Value
' your code
Next i
 
Upvote 0

Forum statistics

Threads
1,224,820
Messages
6,181,160
Members
453,021
Latest member
Justyna P

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