- Katılım
- 12 Eylül 2004
- Mesajlar
- 885
- Excel Vers. ve Dili
- Excel 2019 Türkçe (Ev)
Excel 2013 Türkçe (Okul)
Kod:
Private Sub CommandButton4_Click()
Set S1 = Sheets("devam_kisi_rapor")
Sheets("devam_kisi_rapor").[A2:D47].ClearContents
For sat = 1 To ListBox2.ListCount - 1
Sheets("devam_kisi_rapor").Cells(sat, "A") = sat - 1
For sut = 1 To 5
Sheets("devam_kisi_rapor").Cells(sat + 1, sut) = ListBox2.List(sat, sut - 2)
Next: Next
S1.Range("B48").Value = ComboBox1.Text
S1.Range("B1").Value = TextBox1.Text & "-" & TextBox2.Text & "TARİHLERİ ARASI DEVAMSIZLIK DURUMU"
S1.Range("B49").Value = ListBox1.List(ListBox1.ListIndex, 3)
S1.Range("B50").Value = ListBox1.List(ListBox1.ListIndex, 2)
MsgBox "İşlem Tamam", vbInformation + vbMsgBoxRtlReading, "hakaNErdost"
End Sub
