- Katılım
- 6 Kasım 2006
- Mesajlar
- 176
- Excel Vers. ve Dili
- türkçe
Kod:
Private Sub TextBox37_Change()
'TextBox26 = Format(TextBox26.Value, "#,##0.00")
'TextBox27 = Format(TextBox27.Value, "#,##0.00")
Y = TextBox25
AK = TextBox37
Z = TextBox26
If TextBox25.Value = "" Then Y = 0
If TextBox37.Value = "" Then AK = 0
If TextBox26.Value = "" Then Z = 0
TextBox26.Value = Replace(((Y * AK) / 100 + Y) * 1, ".", ",")
TextBox27.Value = Replace(((Y * AK) / 100 + Y) * 1, ".", ",")
End Sub
Private Sub TextBox38_Change()
'TextBox27 = Format(TextBox27.Value, "#,##0.00")
'TextBox28 = Format(TextBox28.Value, "#,##0.00")
AA = TextBox27
Al = TextBox38
AB = TextBox28
If TextBox27.Value = "" Then AA = 0
If TextBox38.Value = "" Then Al = 0
If TextBox28.Value = "" Then AB = 0
TextBox28.Value = Replace((AA / Al) * 1, ".", ",")
End Sub
Son düzenleme:
