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 TextBox25_Change()
If TextBox25.Value < 22 And TextBox25.Value > 0 Then
TextBox26.Value = Replace(FormatNumber(CDbl(TextBox22.Value) * CDbl(TextBox25.Value), 2), ".", ",")
TextBox27.Value = Replace(FormatNumber(CDbl(TextBox23.Value) * CDbl(TextBox25.Value), 2), ".", ",")
TextBox28.Value = Replace(FormatNumber(CDbl(TextBox26.Value) + CDbl(TextBox27.Value), 2), ".", ",")
Else
TextBox26.Value = ""
TextBox27.Value = ""
TextBox28.Value = ""
MsgBox "Çalışma Yapılan Gün Sayısını Girmediniz", vbOKOnyl + vbInformation, " BİLGİ !"
End If
End Sub
10 - 22 arası rakam girdiğim zaman hata veriyor. Rica etsem yardımcı olabilir misiniz?