ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Question about "End(xlUp)" property (https://www.excelbanter.com/excel-programming/273423-re-question-about-end-xlup-property.html)

Chip Pearson

Question about "End(xlUp)" property
 
Terence,

Test the Value of the cell and move down only if it is not empty.
E.g.,

Dim Rng As Range
Set Rng = Cells(Rows.Count, "A").End(xlUp)
If Rng.Value < "" Then
Set Rng = Rng(2, 1)
End If


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Terence" wrote in message
...
Hi,

I am writing some codes to find out the last non-empty
cell in column A of my worksheet by using the code "Range
("A65536").End(xlUp).Row", then I can write something new
at the next row.
However, if the cell (A1) at row 1 is empty, it doesn't
return 0 but 1. If I write something at the next row, then
it is written to row 2 (cell A2) but leaving cell A1
empty. How should I avoid this problem? Is there any
better coding method?
Thanks a lot in advance!!

Terence





All times are GMT +1. The time now is 06:27 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com