ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Select cells in a column (https://www.excelbanter.com/excel-programming/305502-select-cells-column.html)

Evan

Select cells in a column
 
I need to select all the cells in Column K that have a value. It starts with
K3 and can be any number of cells below, but there are never blank cells
mixed in - its always consecutive. Here is what I have. It works, but seems
"sloppy" for lack of a better word:

ActiveSheet.Range(range("k3"),Cells(ActiveSheet.Ra nge("A65536").End(xlUp).Ro
w, 11)).select

Is there a way to refer to the last used cell in column K without using the
Cells method? Meaning a literal way such as:

Range("k3",ActiveSheet.Range("K65536").End(xlUp).R ow, K) Obviously this
doesn't work, but I was looking for something without using the numeric
index of the column.

thanks



Norman Jones

Select cells in a column
 
Hi Evan,

Is there a way to refer to the last used cell in column K without using the
Cells method? Meaning a literal way such as:


Simply replace the column number with the correspondinf column letter in
your expressions.

For example, the expressions cells(1,4) and cells(1,"D") are completely
equivalent.


---
Regards,
Norman.





Alan Beban[_2_]

Select cells in a column
 
Evan wrote:

I need to select all the cells in Column K that have a value. It starts with
K3 and can be any number of cells below, but there are never blank cells
mixed in - its always consecutive. Here is what I have. It works, but seems
"sloppy" for lack of a better word:

ActiveSheet.Range(range("k3"),Cells(ActiveSheet.Ra nge("A65536").End(xlUp).Ro
w, 11)).select

Is there a way to refer to the last used cell in column K without using the
Cells method? Meaning a literal way such as:

Range("k3",ActiveSheet.Range("K65536").End(xlUp).R ow, K) Obviously this
doesn't work, but I was looking for something without using the numeric
index of the column.

thanks


Set rng = Range("K1")
Range(rng(3), rng(rng(65536).End(xlUp).Row)).Select

Alan Beban

Nigel

Select cells in a column
 
Try.....


Range("K3:K"& Cells(Rows.Count, "K").End(xlUp).Row).Select

Cheers
Nigel


"Evan" wrote in message
...
I need to select all the cells in Column K that have a value. It starts

with
K3 and can be any number of cells below, but there are never blank cells
mixed in - its always consecutive. Here is what I have. It works, but

seems
"sloppy" for lack of a better word:


ActiveSheet.Range(range("k3"),Cells(ActiveSheet.Ra nge("A65536").End(xlUp).Ro
w, 11)).select

Is there a way to refer to the last used cell in column K without using

the
Cells method? Meaning a literal way such as:

Range("k3",ActiveSheet.Range("K65536").End(xlUp).R ow, K) Obviously this
doesn't work, but I was looking for something without using the numeric
index of the column.

thanks






All times are GMT +1. The time now is 10:09 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com