DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub facıt_makinem()
If Application.Calculation = xlManual Then
MsgBox "manuel hesap"
Else
MsgBox "otomatik hesap"
End If
End Sub
Private Sub Workbook_Open()
If Application.Calculation = xlManual Then
MsgBox "El İle Hesaplama Seçili"
Else
MsgBox "Otomatik Hesaplama Seçili"
End If
End Sub
Private Sub Workbook_Open()
Sheets(1).Select
If Application.Calculation = xlManual Then
MsgBox "El İle Hesaplama Seçili"
[A1] = 0
Else
MsgBox "Otomatik Hesaplama Seçili"
[A1] = 1
End If
End Sub