79815875

Date: 2025-11-10 16:39:37
Score: 1
Natty:
Report link

You should use a For Each ws In ThisWorkbook.Worksheets loop, skip the report sheet, and call your existing logic inside it.

For Each ws In ThisWorkbook.Worksheets
    If ws.Name <> ActiveSheet.Name Then Call LoadDataFor(ws)
Next ws
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tuhin Shaikh