How to use function arguments

These inputs have a special name: arguments. Let’s look at some examples. Arguments can be required or optional. Some functions take three or more arguments, and some functions don’t take any arguments at all. A good example of a function that takes no arguments is theTODAY function, which returns the current date. To use it, just enter an equal sign, TODAY, and empty parentheses. Other functions take multiple arguments; all of which are required....

April 14, 2025 · 2 min · 266 words · Kimberly Wheeler

How to use HLOOKUP

Let’s take a look. Here’s the VLOOKUP commission example we’ve looked at previously. Let me quickly run through the example again to recap. Finally, we need to specify an exact or approximate match. We definitely want an approximate match in this case. Now when I copy this down, we get the correct commission rates for each salesperson in the list. Now let’s perform exactly the same lookup using HLOOKUP. To do this, I need to first transpose the table from a vertical layout to a horizontal layout....

April 14, 2025 · 1 min · 164 words · Steven Campbell

How to use Icon sets with conditional formatting

Let’s take a look. Here we have the set of test scores we looked at previously. Let’s explore using conditional formatting with icon sets to highlight values in the table. Icon sets are another primary category in the Conditional Formatting menu. Now let’s edit this rule to see how it works. Notice there are only two options for operators: greater than, or greater than or equals to. Let’s switch back to the three icon set and change to numbers instead of percentages....

April 14, 2025 · 1 min · 173 words · Gregory Roberts

How to use IF with AND and OR

Download the practice worksheet here:If this OR that Practice.xlsx This is part of a 3-part series on Excel formulas. Video 1:5 ways to use VLOOKUPVideo 2:23 tips to work faster with formulas todayVideo 3:How to learn Excel formulas and functions Sample video lessons: How to use IF with AND and OR <- this videoHow to create 3d references

April 14, 2025 · 1 min · 58 words · Brett Garcia

How to use INDEX and MATCH

This article explains in simple terms how to use INDEX and MATCH together to perform lookups. There are more advanced examples further down the page. But what does INDEX actually do? In a nutshell, INDEX retrieves the value at a given location in a range. When the range is one-dimensional, you only need to supply a row number. When the range is two-dimensional, you’ll need to supply both the row and column numbers....

April 14, 2025 · 2 min · 409 words · Tammy Clark

How to use INDEX and MATCH with a table

Using INDEX and MATCH with an Excel Table is wonderfully straightforward. The lastargumentis FALSE to force an exact match. If I change the ID, the formulas return information for a different employee. Forarray, I use the entire table. Forrow_number, I hardcode 5, since ID 622 corresponds to row 5 in the table. Forcolumn_index, I use 2, since first name is the second column. With this information, INDEX correctly returns “Jon”....

April 14, 2025 · 1 min · 156 words · Tiffany Cooper

How to use Mac function keys with Excel

This is especially important with Excel, which uses several function keys for shortcuts. These keys (F1 - F12) are called function keys. (2) as standard function keys. The setting is a checkbox labeled “Use all F1, F2, etc. keys as standard function keys unchecked”. When unchecked, function keys will perform as described in #1 above. For example, you could unassign F9 from Mission Control so that F9 can be available in other applications....

April 14, 2025 · 1 min · 73 words · Robin Taylor

How to use MATCH to find approximate matches

Let’s take a look. I’ll start off entering the MATCH formula in C6. The match value comes from column B, and the lookup_array is “sales”. Now we need to specify the match_type. 0 is only for exact matches, so we have two options: 1 and -1. In this case, the values are in ascending order, so we want a match_type of 1. When I copy the function down,MATCHreturns the position of the match found in the Sales list....

April 14, 2025 · 1 min · 112 words · Gene Fuller

How to use multiplication in a formula

Abstract Transcript In this lesson, we’ll look at how to multiply in Excel. To multiply things in Excel, use the asterisk symbol “*” which is over the 8 key. For example, 8 times 8 is entered as = 8 * 8. Let’s take a look. Just edit the formula and add the equals sign to the front. The next example is C9 times H8. Notice that we get a result of “0"since C9 is “0”....

April 14, 2025 · 1 min · 117 words · Holly Lowe

How to use named ranges with tables

Abstract Transcript In this video, we’ll look at how to usenamed rangeswithExcel tables. One problem with tables is that it’s possible for you to’t usestructured referencesdirectly to createdata validationorconditional formattingrules. To illustrate, here I have a list of projects representing a sales pipeline. The last column in the table uses data validation to provide a dropdown list of allowed values. If I make a run at use a structured reference to define the data validation range, Excel complains....

April 14, 2025 · 1 min · 129 words · Amy Morris

How to use number formatting in Excel

Let’s take a look. To start off, let’s copy the numbers in column B to the rest of our table. Let’s make adjustments to the Number format to match the headings in our table. By default, the Number format will display two decimal places, rounding numbers as needed. We can easily change the number of decimal places using buttons on the ribbon. One button increases decimal places, and the other button decreases decimal places....

April 14, 2025 · 1 min · 136 words · Yvette Holmes

How to use operators in formulas

Abstract Transcript Excel formulas can contain a variety of operators. Operators tell Excel what mathematical function to perform, or what logical expression to evaluate. You’ll often combine multiple operators in a single formula. Let’s take a look. Here we have a list of operators, their names, and a sample formula for each. So, G6 + I7 is 28, and G6 - I7 equals 14. For multiplication, use an asterisk: H10 * I7 is 21....

April 14, 2025 · 2 min · 232 words · Nicholas Rosales

How to use percentage formatting in Excel

Abstract Transcript In this lesson we’ll look at the Percentage format. The Percentage format is made to display fractional values as percentages. For instance, the value .05, formatted as a percent, will display as 5%. Let’s take a look. In column B of our table we have a set of numbers in General format. Let’s first copy the numbers to the rest of our table. Now let’s apply the Percentage format....

April 14, 2025 · 1 min · 148 words · Angela Russell