gultekinkaymaz
Yeni Üye
- Katılım
- 7 Şub 2022
- Mesajlar
- 124
- Aldığı beğeni
- 17
- Excel V
- Office 2016 TR
Konu Sahibi
Herkese merhaba,
Aşağıda yer alan hesaplama kodlarım evdeki bilgisayarımda gayet sorunsuz çalışıp hesaplama yaparken iş yerimdeki bilgisayarda TextBox27.Value = GV satırı Error 2015 hatası vermektedir.
If IsNumeric(TextBox1.Value) And IsNumeric(TextBox21.Value) And IsNumeric(TextBox22.Value) And IsNumeric(TextBox23.Value) And IsNumeric(TextBox24.Value) And IsNumeric(TextBox25.Value) And IsNumeric(TextBox26.Value) And IsNumeric(TextBox10.Value) And IsNumeric(TextBox13.Value) And IsNumeric(TextBox14.Value) Then
TextBox3.Value = Format(CDbl(TextBox1.Value) / (1 + CDbl(TextBox21.Value) / 100), "#,##0.00")
TextBox2.Value = Format(CDbl(TextBox1.Value) - CDbl(TextBox3.Value), "#,##0.00")
TextBox4.Value = CDbl(TextBox3.Value) * CDbl(TextBox22.Value) / 100
TextBox5.Value = CDbl(TextBox3.Value) * CDbl(TextBox23.Value) / 100
TextBox6.Value = CDbl(TextBox3.Value) * CDbl(TextBox24.Value) / 100
TextBox7.Value = CDbl(TextBox3.Value) * CDbl(TextBox25.Value) / 100
TextBox8.Value = CDbl(TextBox3.Value) * CDbl(TextBox26.Value) / 100
TextBox30.Value = CDbl(TextBox3.Value) * CDbl(TextBox31.Value) / 100
TextBox11.Value = TextBox3.Value - TextBox4.Value - TextBox5.Value - TextBox6.Value - TextBox7.Value - TextBox8.Value - TextBox9.Value
TextBox12.Value = TextBox11.Value * (TextBox10.Value / 100)
TextBox15.Value = CDbl(TextBox13.Value) + CDbl(TextBox14.Value)
TextBox16.Value = Format(Application.VLookup(ComboBox1.Value, Sheets("VERGİLER").Range("F2:G13"), 2, False), "#,##0.00")
GV = Evaluate("SUMPRODUCT(--(" & CDbl(TextBox13.Value) & "+" & CDbl(TextBox14.Value) & ">VERGİLER!$D$1:$D$5), (" & CDbl(TextBox13.Value) & " +" & CDbl(TextBox14.Value) & "-VERGİLER!$D$1:$D$5),VERGİLER!$E$2:$E$6-VERGİLER!$E$1:$E$5)-SUMPRODUCT(--(" & CDbl(TextBox14.Value) & ">VERGİLER!$D$1:$D$5), (" & CDbl(TextBox14.Value) & "-VERGİLER!$D$1:$D$5), VERGİLER!$E$2:$E$6-VERGİLER!$E$1:$E$5)")
TextBox27.Value = GV (Bu satır Error 2015 hatası veriyor)
TextBox28.Value = CDbl(TextBox12.Value) + CDbl(TextBox15.Value)
GV2 = Evaluate("SUMPRODUCT(--(" & CDbl(TextBox12.Value) & "+" & CDbl(TextBox15.Value) & ">VERGİLER!$D$1:$D$5), (" & CDbl(TextBox12.Value) & " +" & CDbl(TextBox15.Value) & "-VERGİLER!$D$1:$D$5),VERGİLER!$E$2:$E$6-VERGİLER!$E$1:$E$5)-SUMPRODUCT(--(" & CDbl(TextBox15.Value) & ">VERGİLER!$D$1:$D$5), (" & CDbl(TextBox15.Value) & "-VERGİLER!$D$1:$D$5), VERGİLER!$E$2:$E$6-VERGİLER!$E$1:$E$5)")
Dim txt3, txt4, txt5, txt6, txt7, txt8, txt9 As Double
If (CDbl(TextBox16.Value) - CDbl(TextBox27.Value)) < 0 Then
TextBox29.Value = 0
Else
TextBox29.Value = Format(CDbl(TextBox16.Value) - CDbl(TextBox27.Value), "#,##0.00")
End If
If (GV2 - (TextBox29.Value)) < 0 Then
TextBox17.Value = 0
Else
TextBox17.Value = Format(GV2 - CDbl(TextBox29.Value), "#,##0.00")
End If
txt3 = TextBox3.Value
txt4 = TextBox4.Value
txt5 = TextBox5.Value
txt6 = TextBox6.Value
txt7 = TextBox7.Value
txt8 = TextBox8.Value
txt9 = TextBox9.Value
TextBox11.Value = txt3 - txt4 - txt5 - txt6 - txt7 - txt8 - txt9
End If
TextBox18.Value = Format(CDbl(TextBox28.Value) * ((759 / 100) / 1000), "#,##0.00")
TextBox19.Value = Format(CDbl(TextBox17.Value) + CDbl(TextBox18.Value), "#,##0.00")
TextBox20.Value = Format(CDbl(TextBox12.Value) - CDbl(TextBox19.Value), "#,##0.00")
Aşağıda yer alan hesaplama kodlarım evdeki bilgisayarımda gayet sorunsuz çalışıp hesaplama yaparken iş yerimdeki bilgisayarda TextBox27.Value = GV satırı Error 2015 hatası vermektedir.
If IsNumeric(TextBox1.Value) And IsNumeric(TextBox21.Value) And IsNumeric(TextBox22.Value) And IsNumeric(TextBox23.Value) And IsNumeric(TextBox24.Value) And IsNumeric(TextBox25.Value) And IsNumeric(TextBox26.Value) And IsNumeric(TextBox10.Value) And IsNumeric(TextBox13.Value) And IsNumeric(TextBox14.Value) Then
TextBox3.Value = Format(CDbl(TextBox1.Value) / (1 + CDbl(TextBox21.Value) / 100), "#,##0.00")
TextBox2.Value = Format(CDbl(TextBox1.Value) - CDbl(TextBox3.Value), "#,##0.00")
TextBox4.Value = CDbl(TextBox3.Value) * CDbl(TextBox22.Value) / 100
TextBox5.Value = CDbl(TextBox3.Value) * CDbl(TextBox23.Value) / 100
TextBox6.Value = CDbl(TextBox3.Value) * CDbl(TextBox24.Value) / 100
TextBox7.Value = CDbl(TextBox3.Value) * CDbl(TextBox25.Value) / 100
TextBox8.Value = CDbl(TextBox3.Value) * CDbl(TextBox26.Value) / 100
TextBox30.Value = CDbl(TextBox3.Value) * CDbl(TextBox31.Value) / 100
TextBox11.Value = TextBox3.Value - TextBox4.Value - TextBox5.Value - TextBox6.Value - TextBox7.Value - TextBox8.Value - TextBox9.Value
TextBox12.Value = TextBox11.Value * (TextBox10.Value / 100)
TextBox15.Value = CDbl(TextBox13.Value) + CDbl(TextBox14.Value)
TextBox16.Value = Format(Application.VLookup(ComboBox1.Value, Sheets("VERGİLER").Range("F2:G13"), 2, False), "#,##0.00")
GV = Evaluate("SUMPRODUCT(--(" & CDbl(TextBox13.Value) & "+" & CDbl(TextBox14.Value) & ">VERGİLER!$D$1:$D$5), (" & CDbl(TextBox13.Value) & " +" & CDbl(TextBox14.Value) & "-VERGİLER!$D$1:$D$5),VERGİLER!$E$2:$E$6-VERGİLER!$E$1:$E$5)-SUMPRODUCT(--(" & CDbl(TextBox14.Value) & ">VERGİLER!$D$1:$D$5), (" & CDbl(TextBox14.Value) & "-VERGİLER!$D$1:$D$5), VERGİLER!$E$2:$E$6-VERGİLER!$E$1:$E$5)")
TextBox27.Value = GV (Bu satır Error 2015 hatası veriyor)
TextBox28.Value = CDbl(TextBox12.Value) + CDbl(TextBox15.Value)
GV2 = Evaluate("SUMPRODUCT(--(" & CDbl(TextBox12.Value) & "+" & CDbl(TextBox15.Value) & ">VERGİLER!$D$1:$D$5), (" & CDbl(TextBox12.Value) & " +" & CDbl(TextBox15.Value) & "-VERGİLER!$D$1:$D$5),VERGİLER!$E$2:$E$6-VERGİLER!$E$1:$E$5)-SUMPRODUCT(--(" & CDbl(TextBox15.Value) & ">VERGİLER!$D$1:$D$5), (" & CDbl(TextBox15.Value) & "-VERGİLER!$D$1:$D$5), VERGİLER!$E$2:$E$6-VERGİLER!$E$1:$E$5)")
Dim txt3, txt4, txt5, txt6, txt7, txt8, txt9 As Double
If (CDbl(TextBox16.Value) - CDbl(TextBox27.Value)) < 0 Then
TextBox29.Value = 0
Else
TextBox29.Value = Format(CDbl(TextBox16.Value) - CDbl(TextBox27.Value), "#,##0.00")
End If
If (GV2 - (TextBox29.Value)) < 0 Then
TextBox17.Value = 0
Else
TextBox17.Value = Format(GV2 - CDbl(TextBox29.Value), "#,##0.00")
End If
txt3 = TextBox3.Value
txt4 = TextBox4.Value
txt5 = TextBox5.Value
txt6 = TextBox6.Value
txt7 = TextBox7.Value
txt8 = TextBox8.Value
txt9 = TextBox9.Value
TextBox11.Value = txt3 - txt4 - txt5 - txt6 - txt7 - txt8 - txt9
End If
TextBox18.Value = Format(CDbl(TextBox28.Value) * ((759 / 100) / 1000), "#,##0.00")
TextBox19.Value = Format(CDbl(TextBox17.Value) + CDbl(TextBox18.Value), "#,##0.00")
TextBox20.Value = Format(CDbl(TextBox12.Value) - CDbl(TextBox19.Value), "#,##0.00")