You could use a VBA solution.
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
Dim NextRw As Long
If Target.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("F3:J72")) Is Nothing And Target.Value = "Termed" Then
With Worksheets("Termed")
NextRw = .Cells(.Rows.Count, 1).End(xlUp).Row + 1
.Cells(NextRw, 1).Value = Me.Cells(Target.Row, 5).Value
.Cells(NextRw, 2).Value = Me.Cells(Target.Row, 2).Value
.Cells(NextRw, 3).Value = Me.Cells(2, Target.Column).Value
.Cells(NextRw, 4).Value = Me.Name
End With
End If
End Sub
Copy the code
Select the worksheet in which you the code to run
Right click on the sheet tab and choose View Code, to open the Visual Basic Editor.
Where the cursor is flashing, choose Edit | Paste
Where does the combobox issue in your title occur?
Bookmarks