I remember this Workbook even..when you were explaning about combobox.
Code:
Private Sub Workbook_Open()
With ComboBox1
.AddItem "Excel 2003"
.AddItem "Excel 2007"
.AddItem "Excel 2010"
.AddItem "Excel 2013"
.AddItem "Excel 2016"
End With
End Sub
I Have checked the attachment and its working fine…And I want to mention three implementation
1) Output result getting replaced
For Example: If select first Agent in the list and hit upload button…Result coming perfectly
But in the same way if I select second Agent in the list and uncheck First agent and I will hit upload button now in output sheet First Agent data got cleared and second Agent data replaced
I want second Agent data will go and sit next below to First Agent Data