- Katılım
- 6 Eylül 2007
- Mesajlar
- 657
- Excel Vers. ve Dili
- excel 2016 32 Bit ve Excel 2020 32 Bit Türkçe ve İngilizce
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub CommandButton1_Click()
Dim x As Byte
Application.ScreenUpdating = False
If Not IsDate(TextBox1.Text) Then TextBox1.Text = Date
For a = 3 To 14
For b = 3 To 6
x = x + 1
Cells(a, b) = KurSorgula(Cells(a, 1), TextBox1.Text, b - 3)
Bar3.Width = x * 6.4
Barlbl.Caption = "% " & Int(x / 48 * 100)
DoEvents
Next
Next
Application.ScreenUpdating = True
MsgBox "işlem tamam,Lütfen hesapla butonuna basınız"
Unload Me
End Sub