Hello,
In Excel Macro, how can I find
1. the sum of numbers in column Z
2. and count of number of rows in column Z
Thanks,
Bob Umlas - 02 Oct 2006 02:02 GMT
SumOfNumbers = Application.Sum(Range("Z:Z"))
CountOfRows = cells(rows.count,26).end(xlup).Row 'if you mean the # of
used rows (including blanks)
> Hello,
> In Excel Macro, how can I find
> 1. the sum of numbers in column Z
> 2. and count of number of rows in column Z
> Thanks,