Excel hata

Katılım
20 Mayıs 2005
Mesajlar
130
Excel Vers. ve Dili
Excel 2007 - Ingilizce
Arkadaşlar excel'i her kapattığımda hata veriyor. Ekteki dosyaya hata ekran görüntüsünü koydum. Yardımcı olabilir misiniz? Şimdiden teşekkürler
 
Katılım
10 Ekim 2006
Mesajlar
53
Excel Vers. ve Dili
office 2003 türkçe
Benim excelim türkçe sen ona göre uyarla yardım menüsünde algıla ve onar seçeneği var, oradan çözmeye çalış
 
Katılım
15 Ocak 2007
Mesajlar
791
Excel Vers. ve Dili
2003 excel visual basic
arkadaşım auto_close modulünde uygulama gizleme kodu konmuş olabilir boş bir excel sayfası açıp Alt+F11 basınca karşınıza çıkan module sayfanızdaki kodları yazabilir misiniz ?
 
Katılım
20 Mayıs 2005
Mesajlar
130
Excel Vers. ve Dili
Excel 2007 - Ingilizce
Module 1 deki kodlar:

Function CountByColor(InRange As Range, _
WhatColorIndex As Integer, _
Optional OfText As Boolean = False) As Long
'
' This function return the number of cells in InRange with
' a background color, or if OfText is True a font color,
' equal to WhatColorIndex.
'
Dim Rng As Range
Application.Volatile True

For Each Rng In InRange.Cells
If OfText = True Then
CountByColor = CountByColor - _
(Rng.Font.ColorIndex = WhatColorIndex)
Else
CountByColor = CountByColor - _
(Rng.Interior.ColorIndex = WhatColorIndex)
End If
Next Rng

End Function

Module 2'deki kodlar

Sub VALUESSUBTRACT()
'
' VALUESSUBTRACT Macro
' Macro recorded 03.02.2006 by erkan.acet
'

'
Selection.PasteSpecial Paste:=xlValues, Operation:=xlSubtract, SkipBlanks _
:=False, Transpose:=False
End Sub
 
Üst