Textbox2 ve textbox3 e yazılan rakamları otomatik toplayacak makro kodlar için yardım edebilir misiniz? Dosya ekte ve açıklama icinde
https://dosya.co/dlx0l6xfplz4/21.xlsm.html
https://dosya.co/dlx0l6xfplz4/21.xlsm.html
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub UserForm_Click()
TextBox4.Text = TextBox2.Text * TextBox3.Text
End Sub
Sub sonuc_al()
If Satıs.TextBox2 <> "" And Satıs.TextBox3 <> "" Then
If IsNumeric(Satıs.TextBox2) And IsNumeric(Satıs.TextBox3) Then
snc = Satıs.TextBox2 * Satıs.TextBox3
End If
End If
Satıs.TextBox4.Value = Format(snc, "#,##0.00")
End Sub
Private Sub TextBox2_Change()
Call sonuc_al
End Sub
Private Sub TextBox3_Change()
Call sonuc_al
End Sub
Çok teşekkürler ellerinize sağlık.Satıs formu için bu şekilde yapınız. Diğer formu siz uyarlama yaparsınız.
Satıs formunda şağıdaki kodu silin.
Aşağıdaki kodu yeni mudule yazın.Kod:Private Sub UserForm_Click() TextBox4.Text = TextBox2.Text * TextBox3.Text End Sub
Textbox2 için;Kod:Sub sonuc_al() If Satıs.TextBox2 <> "" And Satıs.TextBox3 <> "" Then If IsNumeric(Satıs.TextBox2) And IsNumeric(Satıs.TextBox3) Then snc = Satıs.TextBox2 * Satıs.TextBox3 End If End If Satıs.TextBox4.Value = Format(snc, "#,##0.00") End Sub
Textbox3 için;Kod:Private Sub TextBox2_Change() Call sonuc_al End Sub
Kod:Private Sub TextBox3_Change() Call sonuc_al End Sub