View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
[email protected] bplumhoff@gmail.com is offline
external usenet poster
 
Posts: 136
Default How to count number of items(cells) in range?

Hi George,

Range("A1:A25").cells.count

or

dim r as range
r = ...some range operation
debug.print r.cells.count

HTH,
Bernd