I might be not understanding something here. I try to look for the last row in a datasheet and sum up a range. But for some reason it spits out 0, for both values (there are numbers in the cells.).
lRow = Cells.Find(What:="*", _
After:=Range("A1"), _
LookAt:=xlPart, _
LookIn:=xlFormulas, _
SearchOrder:=xlByRows, _
SearchDirection:=xlPrevious, _
MatchCase:=False).Row
Offene_PZ_Form.AZ_Lager.Caption = Application.Sum(Worksheets("Data").Range(Cells(3, 19), Cells(lRow, 19)))
Offene_PZ_Form.AZ_Fehlt.Caption = Application.Sum(Worksheets("Data").Range(Cells(3, 20), Cells(lRow, 20)))