Try this:
Sub Populate_MasterSheet()
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' Since there is some consistency in the ranges between the sheets
' we can loop through each sheet and apply some logic to each range
' within that sheet. I will try to simplify it for you so that you
' are able to see how the code works so that you can amend the code
' later if needed.
'
' -Stnkynts
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Dim ws As Worksheet: Set ws = Sheets("Master")
Dim wksht As Worksheet
Dim lMasterLR As Long, lwkshtLR1 As Long, lwkshtLR2 As Long, startrow As Long
Dim strAccount As String
On Error GoTo ErrHandler
Application.ScreenUpdating = False
For Each wksht In Worksheets
If wksht.Name <> "Master" Then
lMasterLR = ws.Range("D" & Rows.Count).End(xlUp).Row
strAccount = wksht.Range("C8").Value
startrow = 22
Do
startrow = startrow + 1
Debug.Print startrow
Loop Until wksht.Range("B" & startrow).Value <> ""
lwkshtLR1 = wksht.Range("B" & Rows.Count).End(xlUp).Row
lwkshtLR2 = wksht.Range("F" & Rows.Count).End(xlUp).Row
wksht.Range("B" & startrow, "B" & lwkshtLR1).Copy Destination:=ws.Range("D" & lMasterLR).Offset(1, 0)
ws.Range("E" & lMasterLR + 1).Value = strAccount
ws.Range("E" & lMasterLR + 1, "E" & ws.Range("D" & Rows.Count).End(xlUp).Row).FillDown
wksht.Range("F" & startrow, "F" & lwkshtLR2).Copy Destination:=ws.Range("K" & lMasterLR).Offset(1, 0)
End If
Next wksht
Application.ScreenUpdating = True
Debug.Print "Procedure Completed Successfully"
Exit Sub
ErrHandler:
Debug.Print "There has been a critical error."
Application.ScreenUpdating = True
End Sub
Bookmarks