How to start an offset formula on a different row

TJC86

New Member
Joined
Aug 27, 2014
Messages
17
I've got the following formula to move down a row each time, but how do I start this formula on row 12, not row 1.

Range("A" & rows.Count).End(xlUp).Offset(1)

Thanks
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
.
.

Your code points to the last non-empty cell in column A and then points to the cell directly below that.

If you wanted the cell below A12, you could use:

Range("A12").Offset(1,0)

or, more simply:

Range("A13")
 
Upvote 0
Hi

I think this achieves what you have above but starting at "A12", However I think you might need to be a little clearer about what you want to achieve.

Code:
Dim Lr, LrRange
Lr = ActiveSheet.Range("a1000000").End(xlUp).Row + 1
LrRange = ActiveSheet.Range("a12:a" & Lr).Address(False, False)


regards

Kev
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,265
Messages
6,177,538
Members
452,782
Latest member
ZCapitao

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