VBA dynamic last row for multiple sheets

JustTheTim

New Member
Joined
Feb 23, 2018
Messages
8
Ok so I'm a bit frustrated with several failed attempts at this. I have a workbook with many worksheets. I have code to loop through each sheet (except one) and perform different calculations for certain rows. I then take those calculations and attempt to paste them 3 and 4 rows after the last row. It works perfectly for the first sheet but the subsequent sheets end up with the calculations pasted in the same rows as the first sheet. It's as if it's only finds the last row number once then stores it for the rest of the loop.

Any and all help would be greatly appreciated!

Sub WorksheetLoop()

Dim lr As Long
Dim sheet As Worksheet
Dim avd As Worksheet

Set avd = ThisWorkbook.Worksheets("Calendar")

For Each sheet In ActiveWorkbook.Worksheets
If sheet.Name <> avd.Name Then
With sheet

lr = Cells(Rows.Count, 1).End(xlUp).Row

.Range("A1:F" & lr).AutoFilter Field:=6, Criteria1:="X"
.Range("T5").Value = WorksheetFunction.Average(sheet.Columns("C").SpecialCells(xlCellTypeVisible))
.Range("U5").Value = WorksheetFunction.Average(sheet.Columns("D").SpecialCells(xlCellTypeVisible))
.Range("V5").Value = WorksheetFunction.Average(sheet.Columns("E").SpecialCells(xlCellTypeVisible))
.Range("W5").Value = (WorksheetFunction.CountA(sheet.Columns("A").SpecialCells(xlCellTypeVisible)))-1
.ShowAllData

.Range("A1:F" & lr).AutoFilter Field:=6, Criteria1:=""
.Range("X6").Value = WorksheetFunction.Average(sheet.Columns("C").SpecialCells(xlCellTypeVisible))
.Range("Y6").Value = WorksheetFunction.Average(sheet.Columns("D").SpecialCells(xlCellTypeVisible))
.Range("Z6").Value = WorksheetFunction.Average(sheet.Columns("E").SpecialCells(xlCellTypeVisible))
.Range("AA6").Value = (WorksheetFunction.CountA(sheet.Columns("A").SpecialCells(xlCellTypeVisible)))-1
.ShowAllData

.Range("X6:AA6").Cut Destination:=sheet.Range("C" & lr).Offset(3,0)
.Range("T5:W5").Cut Destination:=sheet.Range("C" & lr).Offset(1,0)
End With
End If
Next sheet
End Sub
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
This line...
VBA Code:
lr = Cells(Rows.Count, 1).End(xlUp).Row
...should be...
VBA Code:
lr = .Cells(.Rows.Count, 1).End(xlUp).Row
(Notice the "." in front of "Cells" and "Rows")

VBA Code:
Sub WorksheetLoop()

    Dim lr As Long
    Dim sheet As Worksheet
    Dim avd As Worksheet
    
    Set avd = ThisWorkbook.Worksheets("Calendar")
    
    For Each sheet In ActiveWorkbook.Worksheets
        If sheet.Name <> avd.Name Then
            With sheet
                lr = .Cells(.Rows.Count, 1).End(xlUp).Row
                
                .Range("A1:F" & lr).AutoFilter Field:=6, Criteria1:="X"
                .Range("T5").Value = WorksheetFunction.Average(sheet.Columns("C").SpecialCells(xlCellTypeVisible))
                .Range("U5").Value = WorksheetFunction.Average(sheet.Columns("D").SpecialCells(xlCellTypeVisible))
                .Range("V5").Value = WorksheetFunction.Average(sheet.Columns("E").SpecialCells(xlCellTypeVisible))
                .Range("W5").Value = (WorksheetFunction.CountA(sheet.Columns("A").SpecialCells(xlCellTypeVisible))) - 1
                .ShowAllData
                
                .Range("A1:F" & lr).AutoFilter Field:=6, Criteria1:=""
                .Range("X6").Value = WorksheetFunction.Average(sheet.Columns("C").SpecialCells(xlCellTypeVisible))
                .Range("Y6").Value = WorksheetFunction.Average(sheet.Columns("D").SpecialCells(xlCellTypeVisible))
                .Range("Z6").Value = WorksheetFunction.Average(sheet.Columns("E").SpecialCells(xlCellTypeVisible))
                .Range("AA6").Value = (WorksheetFunction.CountA(sheet.Columns("A").SpecialCells(xlCellTypeVisible))) - 1
                .ShowAllData
                
                .Range("X6:AA6").Cut Destination:=sheet.Range("C" & lr).Offset(3, 0)
                .Range("T5:W5").Cut Destination:=sheet.Range("C" & lr).Offset(1, 0)
            End With
        End If
    Next sheet

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,968
Messages
6,122,506
Members
449,089
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top