The instructions for some of the tips you see featured in ExcelTips vary depending on the version of Excel you are using. If you are a relative newcomer to Excel, you may not know exactly how to determine which version you are using.
There are a couple of ways you can figure out which version you are using. The first is to watch Excel as you start the program. Depending on the speed of your system, you may notice the version in the splash screen that appears as Excel starts up. (I say that this depends on the speed of your system because I've seen some systems that are so fast, the splash screen is gone before anyone can fully see everything that is on it.)
If you’re using Office for Mac, open one of the Office programs, such as Word, and click on the Word (or Excel, PowerPoint, etc.) menu. Select “About Word”. The About Word (or Excel, PowerPoint, etc.) dialog box displays, listing the current version number and the build number. If you see Version 15.x, you’re using Office for Mac 2016. View version history from within a Microsoft Office document. If you are working with a Microsoft Office document, such as a Word, Excel, or PowerPoint file, you can view version history from the app view rather than returning to the list or library to view the history. Now browse to the following location to find the Excel (.exe): C: program files program files X (86). Look for Microsoft Office-Office 15. Select Excel.exe. Check the box ‘Always use the selected program to open this kind of file’. Once the association is completed, try to access the Excel file and check the result.
Once you have started Excel, how you determine your version depends on the version of Excel you are using. (That sounds rather circular, doesn't it?)
Microsoft Office Excel is a spreadsheet program. Microsoft released the first version of Excel for Windows in 1987. Since then, 10 more versions have appeared. As a rule, Microsoft Excel is backward compatible; a newer program version can always open previous version files. To check the Version from Excel 2016 start Excel an click on File / Account. On the right side you see the office main version. In the scrrenshot it is 2016. Below you find the exact version. In the screenshot it is 1707 (Build 8326.2096) nfo Open Save As Histop Print.
Take a look at the top of your screen. Assuming you can see the ribbon up there (it has words on it like Home, Insert, Page Layout, etc.), you can take a first pass at determining your version by looking at the left end of the ribbon. If you see a File tab, then you are using Excel 2010, Excel 2013, Excel 2016, Excel 2019, or Excel in Office 365. (More on that it a moment.) If you, instead, see a round Office button at the top-left corner of the screen, then you are using Excel 2007.
Assuming you see a File tab, you can further narrow down your version by clicking that File tab. If you continue to see the ribbon tabs at the top of the screen, you are using Excel 2010. If the ribbon tabs disappear and you instead see (at the upper-left corner of the screen) a round circle containing a left-pointing arrow, then you are using Excel 2013 or a later version.
If you want to get even more detailed information about your version—information that includes the specific build number of your version—then how you find that out varies widely depending on your general version of Excel. (You might need the detailed build information to provide to Microsoft technical support, for instance.)
Excel 2007
If you want to determine more detail about your version number, then you should follow these steps if you are using Excel 2007:
- Click the Office button then click Excel Options. Excel displays the Excel Options dialog box.
- At the left side of the dialog box, click Resources.
- Click the About button. Excel displays the About Microsoft Office Excel dialog box. (See Figure 1.)
Figure 1. The About Microsoft Office Excel dialog box.
Note that near the top of the dialog box you can see the version number you are using. When you are through reviewing the information, click OK to close the dialog box.
Excel 2010
If you want to determine more detail about your version number and you are using Excel 2010, getting to the info is much easier than in Excel 2007. Start by clicking the File tab of the ribbon and then click Help at the left side of the screen. You'll see all the version information appear at the right side of the screen.
Excel 2013, Excel 2016, Excel 2019, and Excel in Office 365
Starting with Excel 2013, Microsoft moved where the version information is located, and it can be a bit tricky to locate. The reason is because these later versions are delivered electronically, via download, instead of from physical media like a CD or DVD.
Click the File tab of the ribbon and then, at the left side of the screen, click Account. (Yes, Account. Go figure!) At the right side of the screen you'll see a large heading that says Office Updates or Office (depending on which version of Excel you are using). Under this heading you can find the version information for your copy of the program. In my version of Excel in Office 365, the version information is listed under the About Excel subheading. (See Figure 2.)
Figure 2. The Product Information section of the Account tab on the File tab of the ribbon.
You can find even more detailed version information if you double-click on the About Excel icon to the left of the About Excel subheading.
How To Find Excel Version In Office 365
Finding Information in a Macro
If you need to know the version number and build number in a macro you are creating, you can use the .Version property (for the version) and the .Build property (for the build number). Both properties should be used with the Application object, in this manner:
In these examples, sVersion will contain the version number and sBuild the build number. The version number will be '12.0' for Excel 2007, '14.0' for Excel 2010, '15.0' for Excel 2013, or '16.0' for Excel 2016 and later versions. (It is unclear if the Version property returns something other than '16.0' for Excel 2019, but it definitely returns '16.0' for Office 365.)
How To Find Excel Version Number
The build number will be a string of numbers interspersed with periods; the string corresponds to what you see if you follow the steps described earlier in this tip. For example, if you follow the instructions for Excel in Office 365, earlier, and you see a version number of '16.0.12130.20232', then when you execute the above code, sVersion would be '16.0' and sBuild would be '12130.20232'.