Possibly...
Sub CopyPivot()
Dim cell As Range
Dim i As Long
i = Sheets("Shared Contact Pivot").Cells(Rows.Count, "B").End(xlUp).Row + 1
For Each cell In Sheets("CPA 1").Range("B2:D" & Sheets("CPA 1").Cells(Rows.Count, "B").End(xlUp).Row)
If cell.Value <> "" Then
Sheets("Shared Contact Pivot").Range("B" & i).Resize(0, 3) = cell.Resize(0, 3)
i = i + 1
End If
On Error Resume Next
Next cell
i = Sheets("Shared Contact Pivot").Cells(Rows.Count, "B").End(xlUp).Row + 1
For Each cell In Sheets("CPA 2").Range("B2:D" & Sheets("CPA 2").Cells(Rows.Count, "B").End(xlUp).Row)
If cell.Value <> "" Then
Sheets("Shared Contact Pivot").Range("B" & i).Resize(0, 3) = cell.Resize(0, 3)
i = i + 1
End If
On Error Resume Next
Next cell
Bookmarks