sirkülasyon
Altın Üye
- Katılım
- 10 Temmuz 2012
- Mesajlar
- 2,518
- Excel Vers. ve Dili
- 2021 LTSC TR
- Altın Üyelik Bitiş Tarihi
- 18-06-2026
Kod:
Private Sub ComboBox7_Change()
If ComboBox7.ListIndex > -1 And ComboBox8.ListIndex > -1 Then
TextBox25.Text = Format(DateSerial(ComboBox7.Text, ComboBox8.ListIndex + 1, 1), "dd.mm.yyyy") & " - " & _
Format(DateSerial(ComboBox7.Text, ComboBox8.ListIndex + 2, 1) - 1, "dd.mm.yyyy")
End If
End Sub
Private Sub ComboBox8_Change()
If ComboBox7.ListIndex > -1 And ComboBox8.ListIndex > -1 Then
TextBox25.Text = Format(DateSerial(ComboBox7.Text, ComboBox8.ListIndex + 1, 1), "dd.mm.yyyy") & " - " & _
Format(DateSerial(ComboBox7.Text, ComboBox8.ListIndex + 2, 1) - 1, "dd.mm.yyyy")
End If
End Sub
ComboBox8 ay " Ocak" seçiliyor
TextBox25 Dönem "01/01/2021 - 31/01/2021" formatında bilgi geliyor.
TextBox26' ya Seçilen yıl ve aya göre gelen dönem içerisinde kaç iş günü var ise nasıl yazdırabilirim?