What's an absolute reference?

There are many situations where absolute references are helpful. This might be an hourly rate, a currency conversion ratio, or a constant of some kind. In cases like this, you need a way to tell Excel not to change a cell reference. Let’s take a look. you could do this manually or using the keyboard shortcut F4. Now let’s copy and paste the formula to see how cell references are affected....

April 14, 2025 · 1 min · 195 words · Thomas Mclaughlin

Why pivot tables?

And that’s exactly what we’re going to do in today’s video. And, I want to be really upfront with you here. I love pivot tables. So, I hope by the end of the video you’ll agree with me. Let’s go take a look at some examples. This data represents chocolate sales to several customers in different locations, at a wholesale level. you could see we have Date and Customer. Now we have a name for each column in the data....

April 14, 2025 · 3 min · 558 words · Roy Acosta

Why SUMPRODUCT?

If you spend much time working with Excel formulas, you’ll start to run into theSUMPRODUCT functiona lot. SUMPRODUCT seems to be the catch-all, do-all, go-to solution for many seemingly unrelated Excel problems. Why is SUMPRODUCT in so many Excel formulas? If this concept is new to you,this video provides a basic overview. The SUMPRODUCT function The purpose of SUMPRODUCT is to calculate the sum of products. Notice we are providing C5:C9 asarray1and D5:D9 asarray2....

April 14, 2025 · 2 min · 395 words · Jackie Rose

Why VLOOKUP is better than nested IFs

As a quick recap: The first formula is created with nested IF statements normally. The second example is the same formula but formatted with line breaks to make it easier to read. The third formula performs the same calculation, but it uses VLOOKUP instead of nested IF statements. If I change the sales number, all three formulas calculate the same commission rate. So, let’s look at some reasons whyVLOOKUPis a better choice in this situation....

April 14, 2025 · 1 min · 186 words · Connor Levy

Why you should use a table for your pivot table

A table offers important advantages and makes working with pivot tables a lot easier. Let’s take a look. Here we have a worksheet that contains property listings. Let’s quickly build a pivot table without using a table. As you’re free to see, we get a pivot table on a new worksheet. Now let’s add some additional properties to the data. We’ll just paste the new listings at the bottom of the existing data....

April 14, 2025 · 2 min · 214 words · Jessica Sanchez

Wildcard

And this formula: Counts all cells in A1:A100 that contain exactly 3 characters. For numeric data, you might uselogical operators. More general information on formula criteria here. Functions that support wildcards Not all functions allow wildcards.

April 14, 2025 · 1 min · 36 words · Willie Duran

WORKDAY Function

Note that WORKDAY willautomaticallyexclude Saturdays and Sundays but will only exclude holidays if they are provided. The goal is to calculate a date that is 5 working days after July 1, 2024. Remember that holidays must be valid Excel dates. The name of the holiday makes no difference. Of course, in real life, you will not hardcode dates directly into formulas. You will instead refer to dates on the worksheet with cell references....

April 14, 2025 · 2 min · 245 words · Abigail Smith

WORKDAY.INTL Function

Note that WORKDAY.INTL willautomaticallyexclude Saturdays and Sundays but will only exclude holidays if they are provided. The goal is to calculate a date that is 5 working days after July 1, 2024. This is because WORKDAY.INTL automatically skips Saturdays and Sundays when it calculates a result. Note: the holidays above are provided as anarray constantbut more typically holidays are provided as a range. Remember that holidays must be valid Excel dates....

April 14, 2025 · 2 min · 338 words · Alexander Sherman

Workdays per month

The month itself is controlled by the 2nd argument. Since in this case we want to stay in the same month, we use zero. If you need more control over which days are treated as weekends, use theNETWORKDAYS.INTLfunction. NETWORKDAYS automatically excludes weekends (Saturday and Sunday) and canoptionallyexclude a list of holidays supplied as dates. … NETWORKDAYS.INTL Function The Excel NETWORKDAYS.INTL function calculates the number of working days between two dates....

April 14, 2025 · 1 min · 85 words · Robert Marshall

Working days in year

Holidays are supplied as a list of dates in E5:E14, the named rangeholidays. weekends are Sunday and Monday, etc.) switch to the more powerfulNETWORKDAYS.INTL function, which allows control over which days of the week are considered workdays. NETWORKDAYS automatically excludes weekends (Saturday and Sunday) and canoptionallyexclude a list of holidays supplied as dates. … NETWORKDAYS.INTL Function The Excel NETWORKDAYS.INTL function calculates the number of working days between two dates. The TODAY function takes no arguments....

April 14, 2025 · 1 min · 96 words · Matthew Graham

Working days left in month

In this case, the start date is Jan 10, 2018, provided as cell B5. A list of holidays is provided as the range E5:E14. weekends are Sunday and Monday, etc.) Need a date? If you gotta calculate a datenworkdays in the past or future, see theWORKDAYfunction. NETWORKDAYS automatically excludes weekends (Saturday and Sunday) and canoptionallyexclude a list of holidays supplied as dates. … NETWORKDAYS.INTL Function The Excel NETWORKDAYS.INTL function calculates the number of working days between two dates....

April 14, 2025 · 1 min · 105 words · Heather Black

Working with table rows and columns

Tables offer special features for working with data. There are several ways you’re able to add and remove rows. With any cell selected in the table, Insert will add a new row above. And, the Delete button will delete rows. Sometimes these buttons don’t do exactly what you want. In that case, it’s possible for you to use the more specific table commands in the menu. you’re able to access these same commands with the Right-Click menu....

April 14, 2025 · 2 min · 311 words · Cody Pittman

Worksheet name exists

Explanation The ISREF function returns TRUE for a valid worksheet reference and FALSE is not. INDIRECT then tries to evaluate the text as a reference. When INDIRECT succeeds, the reference is passed into ISREF which returns TRUE. When INDIRECT can’t create a reference, it throws a #REF error, and ISREF returns FALSE. you might use the ISREF function to check for a reference in a formula. INDIRECT Function The Excel INDIRECT function returns a valid cell reference from a given text string....

April 14, 2025 · 1 min · 101 words · Ashley Escobar