You are on page 1of 1

private Sub UserForm_Activate()

For Each sNama in Sheets("Sheet1").range("a3:a7")


Combobox1.Additem sNama.Value
Next sNama
Combobox1.Value="Wasis"
End Sub
Private Sub Combobox1_Change()
Label1.Caption = _
Sheets(Sheet1").Cells(Combobox1.Listindex +3,2)
End Sub

You might also like