Is it possible to emulate Excel 2010 from Office 365?

wpryan

Well-known Member
Joined
May 26, 2009
Messages
534
Office Version
  1. 365
Platform
  1. Windows
I learned recently that some people in my company are holdouts with Office - some are still on Office 2010, and some are incredibly still using Windows 7. Sometimes the code I write doesn't work on these computers. Is it possible to check for this beforehand? Do I have to install an earlier version of Excel, or can I somehow emulate Excel 2010 from Excel 365? If I have to install an earlier version, how to do it?
 
Last edited:

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
If your are not using worksheetfunctions in your code you should be good voor 90%
 
Upvote 0
If your are not using worksheetfunctions in your code you should be good voor 90%
Hmm. Looks like that may be the culprit. I have one lines using it in a userform:
VBA Code:
txt_PS4_v2_Reference.Value = Application.WorksheetFunction.Average(txt_PS4a_mW_v2.Value, txt_PS4b_mW_v2.Value)
which I changed to:
VBA Code:
txt_PS4_v2_Reference.Value = (txt_PS4a_mW_v2.Value + txt_PS4b_mW_v2.Value) / 2
Let's see if that keeps the campers happy...
 
Upvote 0
The average function should not cause problems. All versions do have this one. Avoiding them is still better though. In this case, It’s probably something else. Do you use dictionaries/other objects with early binding? Doe you have an example of your code which is not working in older versions?
 
Upvote 0
Hi All, thanks for your help. I've been away for a while but now I'm back... If I understand correctly what early binding is, then yes the code has some early binding (e.g., "dim ws as worksheet, pw as string, etc).
 
Upvote 0

Forum statistics

Threads
1,215,326
Messages
6,124,256
Members
449,149
Latest member
mwdbActuary

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top