Try this out:
Option Explicit
Sub ConsolidateAuthors()
Dim LastRow As Long, i As Long
Application.ScreenUpdating = False
LastRow = Range("A" & Rows.Count).End(xlUp).Row
For i = 1 To LastRow
If Cells(i, "A") = Cells(i + 1, "A") Then
Range(Cells(i, "B"), Cells(i, "H")).Copy
Cells(i + 1, "B").PasteSpecial Paste:=xlPasteAll, Operation:=xlAdd
Range(Cells(i, "A"), Cells(i, "H")) = ""
End If
Next i
Range("A1:A" & LastRow).SpecialCells(xlCellTypeBlanks).EntireRow.Delete xlShiftUp
Application.ScreenUpdating = True
Cells.Columns.AutoFit
End Sub
Bookmarks