S
steveski
I’m using the following code to (hopefully) step through each populate
row of my Data Entry sheet. I am using Excel 2000. I have a problem an
questions:
- Problem: “LastRow” is giving me a “Run-time error ‘438’: Objec
doesn’t support this property or method”
- Questions: Is the “With Sheets("Data Entry").Range("PTSource")
statement sufficient to ensure the For/Next loop steps through al
populated rows? Is the “LastRow” statement redundant or confllicting?
Thanks.
With Sheets("Data Entry").Range("PTSource")
LastRow = .UsedRange.Rows.Count
For i = 2 To LastRow
Etc
row of my Data Entry sheet. I am using Excel 2000. I have a problem an
questions:
- Problem: “LastRow” is giving me a “Run-time error ‘438’: Objec
doesn’t support this property or method”
- Questions: Is the “With Sheets("Data Entry").Range("PTSource")
statement sufficient to ensure the For/Next loop steps through al
populated rows? Is the “LastRow” statement redundant or confllicting?
Thanks.
With Sheets("Data Entry").Range("PTSource")
LastRow = .UsedRange.Rows.Count
For i = 2 To LastRow
Etc