Excel Functions

Click on a link to see the associated Excel functions

Intro

This is list of useful functions in Microsoft Excel. If you're not familiar with functions, you can think of them as a way to plug in a number, etc., and Excel will do the math for you. For example, if you have several numbers and you want to find the total (the sum) Excel has a function to sum them for you. There's also a function that can find the highest (maximum) number, or the lowest (minimum) number. And it's not just numbers. There are functions for text (or what we generally call "strings" in the data world), where you can get the total number of letters or characters, convert the text to all capitals or all lowercase, etc. There are even functions to test if something is true, like whether a cell is blank. That might sound strange considering that you can just look at a cell to see if it's blank, but sometimes it's not quite that simple.

We say Excel returns a value as the result of all the calculations it does. Generally, Excel will show you the value returned on the spreadsheet itself, instead of showing you the function in that cell. I'll use the term "return a value" below, but it just means the "result" of the function.

Excel Notation

Nesting functions

As explained above, a does a mathematical (or other) process on values and ranges in its parameters and it returns a value (the result). Normally this result is displayed on the screen, but not always. You can actual use the return value of one function in the parameter of another function. This is called "nesting function", as it's putting one function inside another. This is a very common and very powerful technique.

For example, say you have a long range of numbers and you want to find, I don't know, say the point halfway between the highest and the lowest value (not the median of the range, just the average of the highest and the lowest). A funny example, but it will do here. You can do this manually by looking through all the values in the range to find the highest and lowest, maybe sort all the values to make that easy. But you can also combine the functions and have Excel do all the work: =(AVERAGE(MAX(A1:A500)), MIN(A1:A500)). Looks a little complicated? Let's look at what's going on. There are the functions MAX, which returns the highest value, and MIN, which returns the lowest value. You might wonder, "Returns to where? It doesn't get displayed on the screen." Right. It returns the value to outside function: AVERAGE. So Excel first goes through all the values in the range A1 to A500 and find the highest value, and then does the same for the lowest value; once it has those values, it plugs them into the AVERAGE function, and then returns that value to the screen. So for our example:

  1. =(AVERAGE(MAX(A1:A500)), MIN(A1:A500))
  2. =(AVERAGE(90), MIN(30))
  3. =60

User Level

I broke these down by "user level". It's not a real measurement, of course, but I thought I'd give you a heads up since sometimes functions can give you unexpected results, and some functions are used for very technical things that most people don't need to bother with. There's no real cute and dry way to measure experience: the more you use these, the more comfortable you'll feel with them. But it can help new users know how user-friendly use each function is. For additional info, I don't recommend the built in Help features, nor the official Microsoft online help. Instead try Tech on the Net (Excel series) and maybe scan the questions at Stack Overflow (a bit more technical, but a good place to learn tricks). Hope you find it helpful.