7 reasons why you should use INDEX() formula in Excel

Share

Facebook
Twitter
LinkedIn

Of all the hundreds of formulas & thousands of features in Excel, INDEX() would rank somewhere in the top 5 for me. It is a versatile, powerful, simple & smart formula. Although it looks plain, it can make huge changes to the way you analyze data, calculate numbers and present them. It is so important that, whenever I teach (live or online), I usually dedicate 25% of teaching time to INDEX().

Today lets get cozy. Lets start a fling (a very long one). Lets do something that will make you smart, happy and relaxed.

INDEX formula - Usage, examples & Tips

Understanding INDEX formula

In simple terms, INDEX formula gives us value or the reference to a value from within a table or range.

While this may sound trivial, once you realize what INDEX can do, you would be madly in love with it.

Few sample uses of INDEX

1. Lets say you are the star fleet commander of planet zorg. And you are looking at a list of your fleet in Excel (even in other planets they use Excel to manage data). And you want to get the name of 8th item in the list.

INDEX to rescue. Write =INDEX(list, 8)

2. Now, you want to know the captain of this 8th ship, which is in 3rd column. You guessed right, again we can use INDEX,

=INDEX(list, 8,3)

Syntax of INDEX formula

INDEX has 2 syntaxes.

1. INDEX(range or table, row number, column number)

This will give you the value or reference from given range at given row & column numbers.

2. INDEX(range, row number, column number, area number)

This will give you the value or reference from specified area at given row & column numbers.

It may be difficult to understand how these work from the syntax definition. Read on and everything will be clear.

7 reasons why INDEX is an awesome companion

Whether you are in planet zorg managing dozens of star fleet or you are in planet earth managing a list of vendors, chances are you are wrestling everyday with data, pleasing a handful of managers (and clients), delivering like a rock star all while having fun. That is why you should partner with INDEX. It can make you look smart, resourceful and fast, without compromising your existing relationship with another human being.

Data used in these examples

For all these examples (except #6), we will use below data. It is in the table named sf.

Data used in INDEX formula examples

Reason 1: Get nth item from a list

You already saw this in action. INDEX formula is great for getting nth item from a list of values. You simply write =INDEX(list, n)

Reason 2: Get the value at intersection of given row & column

Again, you saw this example. INDEX formula can take a table (or range) and give you the value at nth row, mth column. Like this =INDEX(table, n, m)

Reason 3: Get entire row or column from a table

For some reason you want to have the entire or column from a table. A good example is you are analyzing star fleet ages and you want to calculate average age of all ships.

You can write =AVERAGE(age column)

or you can also use INDEX to generate the age column for you. Assuming the fleet table is named sf and age is in column 7

write =AVERAGE(INDEX(sf, ,7))

Notice empty value for ROW number. When you pass empty or 0 value to either row or column, INDEX will return entire row or column.

Likewise, if you want an entire row, you can pass either empty or 0 value for column parameter.

Reason 4: Use it to lookup left

By now you know that VLOOKUP() cannot fetch values from columns to left. It does not matter if the person looking up is the star fleet commander.

But INDEX along with MATCH can fix this problem.

Lets say you want to know which ship has maximum capacity.

  1. First you find what is the maximum capacity =MAX(sf[Capacity (000s tons)])
  2. Then you find position of of this capacity in all values =MATCH(max_capacity, sf[Capacity (000s tons)],0)
  3. Now, extract the corresponding ship name =INDEX(sf[Ship Name], max_capacity_position)

Or in one line, the formula becomes

=INDEX(sf[Ship Name], MATCH( MAX(sf[Capacity (000s tons)]), sf[Capacity (000s tons)], 0))

For more tips read using INDEX + MATCH combination

Reason 5: Create dynamic ranges

So far, your reaction to INDEX’s prowess might be ‘meh!’. And that is understandable. You are of course star fleet commander and it is difficult to please you. But don’t break-up with INDEX yet.

You see, the true power of INDEX lies in its nature. While you may think INDEX is returning a value, the reality is, INDEX returns a reference to the cell containing value.

So this means, a formula like =INDEX(list, 8) looks like it is giving 8th value in list.

But it is really giving a reference to 8th cell.

Since the result of INDEX is a reference, we can use INDEX in any place where we need to have a reference.

Sounds confusing?

For example, to sum up a list of values in range A1:A10, we write =SUM(A1:A10)

Now, in that formula, both A1 and A10 are references.

Since INDEX gives a reference, we can replace either (or both) A1 & A10 with INDEX formula and it still works.

so =SUM(A1 : INDEX(A1:A50,10))

will give the same result as =SUM(A1:A10)

Although the INDEX route appears overly complicated, it has other applications.

Example 1: SUM of staff in first x ships

Lets say you want to sum up staff in first ‘x’ ships in the sf table.

Since ‘x’ changes from time to time, you want a dynamic range that starts from first ship and goes up to xth ship.

Assuming ‘x’ value is in cell M1 and first ship’s staff is in cell G3,

=SUM(G3:INDEX(sf[Staff count], M1))

will give the desired result.

Example 2: A named range that refers to all ship names in column A

Many times you do not know how much data you have. Even star fleet commanders are left in dark. Lets say you are building a new ship tracking spreadsheet. Since your fleet is ever growing, you do not want to constantly update all formulas to refer to correct ranges.

For example, the ship names are in column A, from A1 to An. And you want to create a named range that points to all ships so that you can use this name elsewhere.

If you define the lstShips =A1:A10, then after you add 11th ship, you must edit this name. And you hate repetitive work.

One solution is to use OFFSET formula to define the dynamic range,

like =OFFSET(A1, 0,0, COUNTA(A:A),1)

While this works ok, since OFFSET is volatile function, it will recalculate every time something changes in your workbook. Even when someone replaces a bolt on landing gear of USS Enterprise.

This will eventually make your workbook slow.

That is where INDEX comes.

You see, INDEX is a non-volatile function*.

So you can create lstShips that points to,

=A1: INDEX(A:A, COUNTA(A:A))

*Even though INDEX is non-volatile, since we are using it in defining a range reference, Excel recalculates the lstShips every time you open the file. (reference).

Reason 6: Get any 1 range from a list of ranges

INDEX has another powerful use. You can get any one range from many ranges using INDEX.

Since you are a successful, smart & resourceful star fleet commander, you got promoted. Now you manage fleet of several planets.

And you have similar ship detail tables for each planet in a workbook. And you want to calculate average age of any planet’s ships with just one formula.

Again INDEX to rescue.

Using INDEX formula to get one of many ranges

Assuming you have 3 different tables – planet1, planet2, planet3

and selected planet number is in cell C1,

write =AVERAGE(INDEX((planet1,planet2,planet3),,,C1))

The reference (planet1,planet2,planet3) will point to all data and C1 will tell INDEX which planet’s data to use.

Pretty nifty eh?!?

Reason 7: INDEX can process arrays

INDEX can naturally process arrays of data (without entering CTRL+Shift+Enter).

For example you want to find out how much staff is in the ships whose captain’s name starts with “R”.

write =SUM(INDEX((LEFT(sf[Captain],1)=“r”)*(sf[Staff count]),0))

Although LEFT(sf[Captain],1)=”r” and sf[Staff count] produce arrays, since INDEX can process arrays automatically, the result comes without CTRL+Shift+Enter

Where as if you use SUM alone =SUM((LEFT(sf[Captain],1)=”r”)*(sf[Staff count])) you have to press CTRL+Shift+Enter to get correct results.

Other formulas: SUMPRODUCT & MATCH too can process arrays automatically.

Download Example Workbook & Get close with INDEX

Since you are going to ask, “I want to spend sometime alone with INDEX in my cubicle right now!”, I made an example workbook. It explains all these powerful uses of INDEX. Go ahead and download it.

Get busy with INDEX.

How to use INDEX in Excel – Video

In this video, learn how to use INDEX formula in Excel with many real-world examples. You can also watch it here.

Why do you love INDEX?

I love INDEX(). If we get a dog, I am going to call her INDEX.

Updated on Feb 2024: We did get a dog, but we call her Excel!

That is how much I love the formula. Almost all my dashboards, complex workbooks and anything that seems magical will have a fair dose of INDEX formulas.

What about you? Do you use INDEX formula often? What are the reasons you love it? Please share your tips, usages and ideas on INDEX using comments.

Learn more about INDEX & other such lovely things in Excel

If you are whistling uncontrollably after reading so far, you are in for a real treat. Check out below articles to become awesome.

Facebook
Twitter
LinkedIn

Share this tip with your colleagues

Excel and Power BI tips - Chandoo.org Newsletter

Get FREE Excel + Power BI Tips

Simple, fun and useful emails, once per week.

Learn & be awesome.

Welcome to Chandoo.org

Thank you so much for visiting. My aim is to make you awesome in Excel & Power BI. I do this by sharing videos, tips, examples and downloads on this website. There are more than 1,000 pages with all things Excel, Power BI, Dashboards & VBA here. Go ahead and spend few minutes to be AWESOME.

Read my storyFREE Excel tips book

Overall I learned a lot and I thought you did a great job of explaining how to do things. This will definitely elevate my reporting in the future.
Rebekah S
Reporting Analyst
Excel formula list - 100+ examples and howto guide for you

From simple to complex, there is a formula for every occasion. Check out the list now.

Calendars, invoices, trackers and much more. All free, fun and fantastic.

Advanced Pivot Table tricks

Power Query, Data model, DAX, Filters, Slicers, Conditional formats and beautiful charts. It's all here.

Still on fence about Power BI? In this getting started guide, learn what is Power BI, how to get it and how to create your first report from scratch.

28 Responses to “Pimp your comment boxes [because it is Friday]”

  1. Jeff Weir says:

    This borders on Excel soft-cell...er, soft-core...porn. My favorite kind.

  2. Tim says:

    Wow, that is pimp-TASTIC! I have a question, as a VBA n00b: additional comment boxes stay plain unless I "run" the macro. Is there a way to change all comments, going-forward?

  3. laguerriere says:

    hi Chandoo, well, I like the macro approach. For those who don't like it, there is another way: just add the "draw" toolbar to the shapes toolbar (via Custom etc), click on "edit comment", click on the auto-shape and then choose "draw" drop-down, --> modify auto-shape --> then you even can have a heart or a banner (I like the horizontal banner in in purple :-)) . in excel 2007, you have to add this custom menu that you choose via Excel Options --> Custom --> it is called "change/ modify auto-shape"!!!
    best,

  4. Tom says:

    @Chandoo. Great Post 🙂
    @Tim : the way the macro is coded, it must be run very time.
    @Community: If someone has an idea to perform it when opening an existing excel, it should be nice.
    @Community: if someone has some code to revamp the commentboxes on all sheets, please share it. 🙂
    @Microsoft Excel-progammers: some pimpoptions for the commentboxes should be great.

    Cheerio
    Tom

  5. Yukikomi says:

    For the auto run, please add the codes in workbook:

    Private Sub Workbook_SheetActivate(ByVal Sh As Object)

    Call Comments_Tom

    End Sub

  6. Debra says:

    Wow, that was a lot of fun... Thanks Tom!

  7. Chandoo says:

    @Jeff... Now, 5000 people know about your favorite porn... 😛

    @Tim ... you can write an event to handle the new comments. I wouldnt recommend it as it is really painful. another option is to use the macro suggested by Yukikomi. It will update comments everytime you activate the sheet.

    @laguerriere: very cool 🙂

  8. Johnnie says:

    @Chandoo ... Thanks! This is good stuff. I combined your tip with a tip from Mark O'Brien, then assigned it to a button on Excel 2010's Quick Access Toolbar, to format comments AS I add them. I also like how Mark's code saves me the trouble of backspacing my name out of new comments:

    Sub AppendToExistingComment()
    'Source: Mark O'Brien at http://www.mrexcel.com/forum/showthread.php?t=57296
    Dim oRange As Range
    Dim oComment As Comment
    Dim sText As String

    'Use object variable to hold range.
    Set oRange = ActiveCell
    'Use object variable for comment
    Set oComment = oRange.Comment
    'text to be added to the comment box
    sText = InputBox("Type text to be added:", "APPEND TO COMMENT TEXT")
    If Len(sText) = 0 Then End
    'If Active Cell has a comment then append new text to the end of the comment text
    If Not oComment Is Nothing Then
    sText = oComment.Text & vbNewLine & sText
    oRange.Comment.Delete
    End If

    'Add a comment with the contents of sText
    oRange.AddComment sText

    DoEvents
    Comments_Tom

    End Sub

  9. Nick says:

    Thank you very much for the code, it seems to be working for the most part; I am having a problem however. Once the routine makes the corrections to the comment, the comment becomes invisible. By invisible, I mean that when I highlight my mouse over it, nothing appears. However, when I right click the cell and click 'edit comment' then the comment becomes visible and I enter edit mode. Upon clicking out of the comment, it simply vanishes again. I've tried to fix this problem by adding a .shape.visible = msoTrue but then every comment is always visible. o_O please advise...

    Thank you,

    Nick

  10. Shailyog says:

    @Nick- That is because the font color of the comment is white and when you select the color of selection is also white hence you can not see anything. Try to change the color code in the routine to something else. would work

  11. Michael says:

    Thanks for that! The code works perfectly!

  12. [...] look at Format Excel Comment Boxes using VBA Macros | Chandoo.org - Learn Microsoft Excel Online [...]

  13. Sunny says:

    @ Chandoo - code works great and the comments look super cool. But I have ran into a small issue. In the comments, I am inserting pictures. When I run the macro, for all comments which already have pictures; pictures are deleted. Pls help me retain the pics in comments.

  14. […] posted some code one of his readers submitted, it "pimps" your comment boxes from those boring black-text-on-yellow rectangles to something more professional and eye-pleasing. […]

  15. mohammad mal says:

    love in it

  16. Deepak says:

    Hi Tom,

    This looks really excellent. I am however relatively new to macros / VBA codes so having copy pasted your code in the Developer mode of an Excel file, what are the next steps to use them? Can you please help? Just to recap, I opened a blank Excel workbook, clicked on Developer, copy pasted the comments code and saved the file to the desktop.

    Now how do I go about using it to add comments to an existing file? My apologies for asking a question which may be basic to you great geniuses, but I am not there yet and aspire to get there.

    Many thanks for helping me with next steps that I need to take so that I can now use the code.

    Best Wishes

    Deepak Dave, CMA, MBA, PMP
    Senior Management Consultant

  17. Tom says:

    Dear Dave,

    The best thing to do is to copy the macro in the personal.xls(x) file. The personal excel file will always be launched when you open excel so you can use it with every excelworkbook.
    Read all about it on the page of Microsoft.
    https://support.office.com/en-us/article/Copy-your-macros-to-a-Personal-Macro-Workbook-aa439b90-f836-4381-97f0-6e4c3f5ee566

    Once you have the macro in the personal, you can 'call' the macro by the keyboardcombination 'alt+f8' and klik on the macroname.

    Hope this clarifies the 'how to'. Good luck with your first steps in the wonderfull world of macro's.
    Tom

    • Deepak says:

      Hi Tom,

      Many thanks. I will try that out. Learning is fun and learning this stuff is even more amazing.

      Best Wishes

      Deepak Dave

  18. Gary says:

    There is a line 'Dim LArea As Long' which does not appear to be used. Have I missed something?

  19. Luis says:

    Excellent hack!
    For some reason when I opened my file after using LibreOffice Calc, all comment boxes had changed to some arrow shape.
    So this macro helped me from manually changing more than 5000 comments in a worksheet, or having to install some Excel extension.
    I used it with the following attributes to get back old style comments:

    It helped me from manually changing more than 5000 comments in a worksheet, or having to install some Excel extension.

    .Shape.AutoShapeType = msoShapeRectangle
    .Shape.TextFrame.Characters.Font.Name = "Calibri"
    .Shape.TextFrame.Characters.Font.Size = 10
    .Shape.TextFrame.AutoMargins = True
    .Shape.TextFrame.AutoSize = True

    Thanks a lot!

  20. Mark Blackburn says:

    This was helpful, thank you

  21. loana says:

    I think this is among the most significant
    information for me. And i am glad reading your article.
    But wanna remark on some general things, The site style is great,
    the articles is really great : D. Good job, cheers

  22. Jen says:

    Is there code to add to this that will format a particular part of the comment (i.e. make the last sentence in the comment bold and in italics)?

  23. Phil says:

    This is fantastic!
    How would I add auto-sizing to it?
    I tried adding this:
    .Shape.AutoSize = True but it gives me an error and as a novice at VBA I can't figure it out.

  24. site de promos says:

    Hello I am so glad I found your web site, I really found you by accident,
    while I was browsing on Bing for something else, Nonetheless I am here now and would
    just like to say thanks a lot for a remarkable post and a all round entertaining blog (I also love the theme/design), I don’t have time to
    read it all at the moment but I have book-marked
    it and also added in your RSS feeds, so when I have time I will be back to read a lot more,
    Please do keep up the fantastic work.

  25. E.H. says:

    This is GREAT!

    How should the code be changed in order to tun once for all worksheets in a workbook?

Leave a Reply