Ok how about this? Should be more flexible in the event you want to add more rows of data/sales reps/cars and will not keep the formulas just paste the values.
Sub Test2()
Dim rB As Range, i As Single, j As Single, lastCol As Single, lastRow As Single
Set rB = Range("B2", Range("B" & Rows.Count).End(xlUp))
lastCol = Range("F2").End(xlToRight).Column
lastRow = Range("E2").End(xlDown).Row
For i = 6 To lastCol 'go through columns with car names
For j = 3 To lastRow 'go through rows with names
Cells(j, i) = Application.WorksheetFunction.SumIfs(rB, _
rB.Offset(0, -1), "=" & Cells(1, i), _
rB.Offset(0, 1), "=" & Cells(j, 5))
Next j
Next i
Bookmarks