[Solved] Determining last active row [duplicate]
Your question is not “How to hide rows that have 0”, your code for that works already. Your question title should be How to find ActiveRange Asking the proper questions helps you find better solutions, quicker. Dim ws as WorkSheet: Set ws = Sheets(“Sheet1”) Dim lr as Long lr = ws.Cells(Rows.Count, “E”).End(xlUp).Row For each cell … Read more