Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
Do not use Rows as a variable, it's already used in VBA. Is ActiveCell always in row 1, otherwise you may wish to subtract ActiveCell.Row from the result below. Look at this: Dim Target as Range Dim RowCount as Integer Set Target = ActiveCell Do While Not (IsEmpty(Target)) RowCount = Target.Row Set Target = Target.Offset(1, 0) Loop 'or RowCount = ActiveCell.End(xlDown).Row Regards, Per "filip" skrev i meddelelsen ... I am counting number of cells i have to iterate with next piece of code: Dim rows Do While Not (IsEmpty(ActiveCell)) rows = ActiveCell.Row ActiveCell.Offset(1, 0).Select Loop is it possible to do the same without selecting? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
count number of cells | Charts and Charting in Excel | |||
How do I count the number of cells | New Users to Excel | |||
Count Number of Different Cells | Excel Worksheet Functions | |||
count number of cells | Excel Worksheet Functions | |||
Count number of times a specific number is displayed in cells | Excel Programming |