Villalobos
Active Member
Hello,
I have a file (the size is around 900 Kb) which has been created by Excel 2013 (there are some macro codes in) and when I use it in this version there are not any kind of problem, but if I open it in Excel 2010 in my office (the codes are running normally) and want to "Save" or "Save as" it the Excel is shuts down constantly.
May be one of command is not compatible with the version 2010 or anything else?
These are the primary commands which are in the file:
In addition there are 2 pivotcharts (without slicers), 5 normal charts and some normal and array formulas.
Do you have any idea why shuts down?
I have a file (the size is around 900 Kb) which has been created by Excel 2013 (there are some macro codes in) and when I use it in this version there are not any kind of problem, but if I open it in Excel 2010 in my office (the codes are running normally) and want to "Save" or "Save as" it the Excel is shuts down constantly.
May be one of command is not compatible with the version 2010 or anything else?
These are the primary commands which are in the file:
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
End Sub
PivotTables("Table1").RefreshTable
Private Sub Workbook_BeforePrint(Cancel As Boolean)
End sub
Private Sub Workbook_NewSheet(ByVal Sh As Object)
End Sub
Private Sub MonthView1_DateClick(ByVal DateClicked As Date)
End Sub
Private Sub UserForm_Initialize()
End Sub
Private Sub cmdClose_Click()
End Sub
Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)
End Sub
Private Sub CheckAll()
End Sub
Private Sub TextBox_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
End Sub
Private Sub UserForm_Terminate()
End Sub
In addition there are 2 pivotcharts (without slicers), 5 normal charts and some normal and array formulas.
Do you have any idea why shuts down?