Need to create a macro that will copy an entire row above the existing row, then deselect the copy range, and add an "A" to the end of the first and last cell in the new row.
I have gotten as far as adding the "A" in the first cell, but cannot work out how to do so for the last cell also. See code below
Private Sub CommandButton1_Click()
InsertCopy
ActiveCell.Select
Application.CutCopyMode = False
ActiveCell.Value = ActiveCell.Value & "A"
End Sub