kyriakos70
Programmer
Hello,
Another question how can I find last cell with value row?
Kyriakos
Another question how can I find last cell with value row?
Kyriakos
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
set xl = getobject(,"excel.application")
r = 1
Do until len(xl.cells(r, 1).value) = 0
r = r + 1
Loop
'last data is on row r
MsgBox Cells.Find("*", Cells(Cells.Rows.Count, "A"), , , , xlPrevious).Row