ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Rows Count of a particular column (https://www.excelbanter.com/excel-programming/305677-rows-count-particular-column.html)

kaon[_23_]

Rows Count of a particular column
 
Hi all,

Sorry for this stupid question. Is it possible to count the number o
rows of a particular column?

I wrote:
1) Worksheets("Settings").UsedRange.Columns(1).Rows.C ount
2) Worksheets("Settings").Columns(1).Rows.Count

Neither works correctly. (first one gives 244, which it should give m
54 for the first column; second one gives 65536.)

Thanks

--
Message posted from http://www.ExcelForum.com


Tom Ogilvy

Rows Count of a particular column
 
Dim lCol as Long, rng as Range
lCol = 1
With Worksheets("Settings")
set rng = .Range(.Cells(1,lCol),.Cells(rows.count,lCol).end( xlup))
End With
msgbox rng.rows.count

--
Regards,
Tom Ogilvy

"kaon " wrote in message
...
Hi all,

Sorry for this stupid question. Is it possible to count the number of
rows of a particular column?

I wrote:
1) Worksheets("Settings").UsedRange.Columns(1).Rows.C ount
2) Worksheets("Settings").Columns(1).Rows.Count

Neither works correctly. (first one gives 244, which it should give me
54 for the first column; second one gives 65536.)

Thanks.


---
Message posted from http://www.ExcelForum.com/




kaon[_26_]

Rows Count of a particular column
 
Thanks, Tom

--
Message posted from http://www.ExcelForum.com



All times are GMT +1. The time now is 10:56 PM.

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