You would need a worksheet_change event watching for changes to cell A1, and based on when that cell changes, force a change into the cell where you List 2 resides. You didn't mention where that cell is, so I will use M1 as an example:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A1")) Is Nothing Then
Application.EnableEvents = False
Select Case Range("A1").Value
Case "Manual"
Range("M1") = "Make Selection..."
Case "Automatic"
Range("M1").Value = Range("D2").Value
End Select
Application.EnableEvents = True
End If
End Sub
Change those M1 references to the correct cells for List2.
Bookmarks