Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Determining Your Version of Excel.

Determining Your Version of Excel

Written by Allen Wyatt (last updated January 15, 2024)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


4

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.)

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?)

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:

  1. Click the Office button then click Excel Options. Excel displays the Excel Options dialog box.
  2. At the left side of the dialog box, click Resources.
  3. Click the About button. Excel displays the About Microsoft Office Excel dialog box. (See Figure 1.)
  4. 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.

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:

sVersion = Application.Version
sBuild = Application.Build

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.)

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".

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (8938) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Determining Your Version of Excel.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Searching for Non-Black Text

Searching for text having (or not having) specific formatting is generally pretty easy. It is more difficult to search ...

Discover More

Putting Your Index after Your Endnotes

Endnotes are supposed to be at the end of your document, right? Not necessarily. You may want something else at the end, ...

Discover More

Counting Fields in a Document

Need to count the number of times a particular field appears in a document? It's easy to do when you apply the techniques ...

Discover More

Program Successfully in Excel! John Walkenbach's name is synonymous with excellence in deciphering complex technical topics. With this comprehensive guide, "Mr. Spreadsheet" shows how to maximize your Excel experience using professional spreadsheet application development tips from his own personal bookshelf. Check out Excel 2013 Power Programming with VBA today!

More ExcelTips (ribbon)

Drop-Down List Font Sizes

Excel has several features that cannot be customized. The font size in the drop-down lists is one of them. If you need ...

Discover More

Starting in Safe Mode

By using a command-line switch, Excel can be started in safe mode. This means that the program is loaded with bare-bones ...

Discover More

Fixing a Numeric Keypad Key

We all expect the keyboard keys to operate as normal, and when they don't, it can be bothersome. Geraldine had such a ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 2 + 8?

2021-02-28 04:26:18

anon

Application.Version for the win. Thank you for doing what Microsoft is sheerly incompetently unable to tell people: if they're on 2016 or 2019. All they show is "365" and a build number. Making America Dumb Again.

Thank you for doing your part to counter their Deproductive insanity. Your step by step elimination approach is intelligent and productive.


2020-02-01 19:27:26

Alex B

The above VBA Application.Build only returns the build digits up to the full stop. The below will give the full build reference.
CreateObject("Scripting.FileSystemObject") _
.GetFileVersion(Application.Path & "\WINWORD.exe")


2020-02-01 14:56:09

Thomas A McKay

This is not correct for Mac users. Simple click Excel - About to display all info


2020-02-01 10:54:27

Deane Orris

Is there a way using macros to distinguish between Excel 2016, 2019, and 365?


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.