The below code adds a line to the next blank row. I would like to add a border to this row that the values are going into. Columns "A:G"
Private Sub CMD_Add_Click()
Dim rNextCl As Range
Set rNextCl = Worksheets("Main").Cells(Rows.Count, 2).End(xlUp).Offset(2, 0)...