Hi, I have the current VBA code to change the names within a sheet.
Private Sub ChangeNames_Click()
Dim Payer1 As String
Dim Payer2 As String
Payer1 = InputBox("Please enter a payers first name")
Payer2 = InputBox("Please enter a payers first name")
Range("a7").Value = Payer1...