I'm guessing the AN column has formulas in it that can result in a blank. A formula such as:
=if A1<2,"small number,"")
Using the End(xlUp) method will find the last cell with a formula/entry. You can use the find method to find the last non blank cell.
![]()
FaultLR= Sheets("ReportSummary").Range("AN:AN").Find(what:="*", LookIn:=xlValues, _ SearchDirection:=xlPrevious).Row
Bookmarks