Mar 14, 2002 #1 marc456 Programmer Mar 14, 2002 2 GB How do I find the number of rows on a sheet, some sheets will have 65K rows. Am I best counting from the bottom or is there short cut. Marc
How do I find the number of rows on a sheet, some sheets will have 65K rows. Am I best counting from the bottom or is there short cut. Marc
Mar 14, 2002 #2 acron MIS Oct 19, 2001 476 IE All sheets have 65536 rows, at least from XL 97 onwards. ActiveSheet.Rows.Count will confirm this. Is that what yo uare looking for ? A.C. Upvote 0 Downvote
All sheets have 65536 rows, at least from XL 97 onwards. ActiveSheet.Rows.Count will confirm this. Is that what yo uare looking for ? A.C.
Mar 14, 2002 Thread starter #3 marc456 Programmer Mar 14, 2002 2 GB I need to know how many used/filled rows there are. I'm compiling some fault trees. Upvote 0 Downvote
Mar 14, 2002 #4 JustinEzequiel Programmer Jul 30, 2001 1,192 PH activeworksheet.usedrange.rows.count Upvote 0 Downvote