SELECTING ROWS IN A COLUMN BASED ON A CRITERIA

navyaa

Board Regular
Joined
Jul 7, 2002
Messages
223
I have a cell which contains a numerical value..the cell is called CurCount. I have another column(AZ) which contains values going down the rows. I need to select rows in the column(AZ) till the count is reached.

in LOTUS THE CODE IS:...
SELECT-DOWN TILL (CURCOUNT-2)

Any suggestions?

THANK YOU ...
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Are you trying to do this in VBA?

If yes, and you are starting at row 1, give this a try:

Range("AZ1:AZ" & "CurCount").Select
 
Upvote 0
Jim:

I get an error using your method.

I replied to navyaa's earlier post with a cruder method, i.e.:

This is one way:

If [CurCount] > 0 Then
Range([AZ1], [AZ1].Offset([CurCount] - 1, 0)).Select
End If

navaa replied that it worked
 
Upvote 0
If you just forget the named range idea and go with the actual cell..... assume the number is in C3 then...

Range("AZ1:AZ" & Range("C3").Value).Select
 
Upvote 0
Thank you very much as both the methods worked....

I am very grateful to both of you:)

navya.
 
Upvote 0

Forum statistics

Threads
1,215,022
Messages
6,122,716
Members
449,093
Latest member
Mnur

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