- Katılım
- 23 Ocak 2011
- Mesajlar
- 293
- Excel Vers. ve Dili
- 2007 excel
Private Sub CommandButton1_Click()
Dim i As Long, sat As Long
sat = 2
Range("A2:A62").ClearContents
For i = 0 To ListBox1.ListCount - 1
If ListBox1.Selected(i) = True Then
Cells(sat, "A").Value = ListBox1.Column(0, i)
sat = sat + 1
End If
Next
[COLOR="Red"]x = [a65536].End(3).Row + 4
Rows(x) = " MAHMUT ÖZDEMİR"
Rows(x + 1) = " Beden Eğitimi Öğretmeni"
[a1].Select[/COLOR]
MsgBox "İşlem Tamamlandı" & vbLf & "MAHMUT ÖZDEMİR", vbOKOnly + vbInformation, "ZİÇEV"
End Sub