For the official MS list of differences see
http://mac2.microsoft.com/vb/1033/Excel/html/xlmscChangesBetweenExcel2010and2011.htm
“The following is a summary of the diffferences in the Microsoft Excel 2011 for Macintosh visual basic object model as compared to Microsoft Excel 2010.”
Here’s my own list, the last of this series:
- Password used in Windows did not work on Mac, may have been because special characters, not tested further.
- Remove all Win32 API stuff: eg Declare Function GetTickCount()
- No SearchFormat so cannot search for a format, eg merged cells
- No .commandtext property of Querytable
- XlCalculationInterruptKey Object removed also Constants xlnokey, xlesckey, xlanykey
- XlCalculationState Object removed
- Connections Object removed
- CustomProperties Collection and CustomProperty Object removed
- XlLinkStatus Object removed
- doc says these changed, in fact removed:
xlAddIn, xlTemplate
doc says xlOpenXMLWorkbook removed, in fact value changed - worksheet.scripts removed
- application.getopenfilename filefilter does not work
- In workbooks.open() Prompted to enable macros even though enableevents=false and displayalerts=false
- Change all “\” to application.pathseparator
- Dir() does not have vbVolume
- I miss the keyboard accelerators, they may be there but I don’t see underlined menu items when I press the Alt key.
- ErrorCheckingOptions Object Changed Properties
InconsistentTableFormula Removed
ListDataValidation Removed - Cannot add hyperlinks, need to investigate syntax
- SendKeys Method is not supported on the Macintosh.
- Typename returns “V()” for variant array rather than “Variant()”
cannot assign x=array(1,2) in immediate mode, need to have declared x - TransitionFormEntry and TransitionExpEval Property isn’t available on the Macintosh.
so what happens if an old Lotus workbook is opened? - DisplayRightToLeft Property True if the window displays from right to left instead of from left to right. Available only in the Arabic and Hebrew versions of Microsoft Excel. Returns False in Excel 2007, not available in my European Mac Excel 2011
Version 14.1.0 (110310) - SaveCopyAs does not always work, need to investigate why
- VBA performance very slow. It took hours to complete a process that took 15 mins on Excel 2007
- The Palette colours are changed, noticeably colorindex 19 to 32
Advertisements