- Katılım
- 21 Ekim 2008
- Mesajlar
- 2,323
- Excel Vers. ve Dili
- Office 2013 - Eng
Arkadaslar bu sizdede olurmu bilmiyorum ama ben bir macroyu calistirdigimda mouse scroll`unu dondurursem macro cok hizli calisiyor sizde denermisiniz lutfen..
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub makro_normal_calıs()
Cells.ClearContents
'Application.Calculation = xlManual
For i = 1 To 1000
Cells(i, 1) = i
Cells(i, 2) = i ^ 2
Cells(i, 3).FormulaR1C1 = "=RC[-2]*RC[-1]"
Next
'Application.Calculation = xlAutomatic
End Sub
Sub makro_hızlı_calıs()
Cells.ClearContents
Application.Calculation = xlManual
For i = 1 To 1000
Cells(i, 1) = i
Cells(i, 2) = i ^ 2
Cells(i, 3).FormulaR1C1 = "=RC[-2]*RC[-1]"
Next
Application.Calculation = xlAutomatic
End Sub
Kod:Sub makro_hızlı_calıs() Cells.ClearContents Application.Calculation = xlManual For i = 1 To 1000 Cells(i, 1) = i Cells(i, 2) = i ^ 2 Cells(i, 3).FormulaR1C1 = "=RC[-2]*RC[-1]" Next Application.Calculation = xlAutomatic End Sub
Application.Calculation = xlManual
With Range("A1")
.Value = 100
.Font.Bold = False
.Interior.ColorIndex = 1
.Copy Destination:=Range("B1")
End With