- Katılım
- 23 Ağustos 2005
- Mesajlar
- 4,651
- Excel Vers. ve Dili
- Excel : 2010
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
If Workbooks.Count > 1 Then
'1. kod
Else
'2. kod
End If
Sub kontrol()
If Workbooks.Count > 1 Then
[A12] = "Şu anda " & Workbooks.Count & " excel dosyası açık"
Else
[A12] = "Sadece bir excel dosyası açık"
End If
End Sub
If Workbooks.Count > 1 Then
ThisWorkbook.Save
ThisWorkbook.Close
Else
ThisWorkbook.Save
Application.Quit
End If