0% found this document useful (0 votes)
3 views7 pages

Excel Formulas and Functions Notes

This study guide covers essential Excel formulas and functions, including how to create formulas, use summary functions like SUM and COUNT, and manage named ranges. It also introduces dynamic array formulas such as SEQUENCE and UNIQUE, as well as data management techniques like VLOOKUP and XLOOKUP. Additionally, it provides tips for auditing worksheet formulas and emphasizes the importance of proper naming conventions.

Uploaded by

flashsplash77
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views7 pages

Excel Formulas and Functions Notes

This study guide covers essential Excel formulas and functions, including how to create formulas, use summary functions like SUM and COUNT, and manage named ranges. It also introduces dynamic array formulas such as SEQUENCE and UNIQUE, as well as data management techniques like VLOOKUP and XLOOKUP. Additionally, it provides tips for auditing worksheet formulas and emphasizes the importance of proper naming conventions.

Uploaded by

flashsplash77
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Excel formulas and functions

Comprehensive Study Guide for Online Learning

1. Intro to formulas and functions


 Create your excel formulas
 2^3 (is equal to 2x2x2) in excel formulas

 <> is not equal to


 Pressing f4 makes a reference absolute

2. Creating summary functions

 Alt + = is SUM formula shortcut


 COUNT formula counts only NUMBERS in cells
 COUNTA – counts any value in cells
 COUNTBLANK – counts the blank cells only
 If you press “space bar” it is considered a value and the formulas change
 SUMIF
 SUMIFS

 AVERAGEIF

 AVERAGEIFS
 COUNTIF

 COUNTIFS

 ROUND – rounds up to a whole number

 ROUNDUP – always rounds up (143.49 is 144)

 ROUNDDOWN – always round down (143.5 is 143)


3. Managing named ranges and excel
tables
 Write underscores (_) instead of spaces when naming ranges or other
things since excel gives errors

4. Using dynamic array formulas

 SEQUENCE - For example =sequence (10)

 UNIQUE –
 SORT

 FILTER
5. Managing data in Excel

 TEXTAFTER –

 TEXTBEFORE(TEXTAFTER)
 VLOOKUP

 XLOOKUP

6. Auditing worksheet formulas


Common questions

Powered by AI

SUMIF and AVERAGEIF both perform conditional calculations based on a criterion. SUMIF adds all numbers in a range that meet a criterion, whereas AVERAGEIF calculates the average of numbers in a range that meet a criterion. While SUMIF sums specified cells based on the criterion, AVERAGEIF averages cells that meet the condition. The similarity lies in their use of criteria to include only certain values in calculations .

Using underscores prevents Excel from treating the names as separate entities, which occurs with spaces, potentially leading to syntax or reference errors. When spaces are included, Excel might not interpret the range or table as intended, disrupting formulas and causing conflicts in how data is processed or referenced within functions .

The ROUND function rounds numbers to a specified number of digits. ROUNDUP always rounds a number up, regardless of its decimal value, so 143.49 becomes 144. Conversely, ROUNDDOWN always rounds a number down, so 143.5 is rounded to 143. These functions are useful for controlling the precision of numeric data in different contexts .

The UNIQUE function helps identify distinct values across data sets, reducing duplication and enhancing data integrity, which is beneficial when analyzing trends or creating summaries. The SORT function orders these unique items, which can organize data for clearer analysis or presentation. Together, they streamline data processing, making it easier to detect patterns, outliers, or organize information hierarchically .

COUNT is designed to count only the numeric entries in a range of cells, whereas COUNTA counts any type of value, including text and numbers. COUNTBLANK counts only the cells that are empty, excluding cells with space characters or formula-generated blanks. These differences determine the appropriateness of each function depending on the data structure and intended analysis .

Pressing the space bar inserts a space character in cells, which COUNTBLANK doesn't count as "blank." This can lead to miscounted results when analyzing empty cells. Users should ensure spaces are not used to simulate blanks. Utilizing CLEAR or DELETE cell content is a reliable method to truly clear cells and maintain accurate COUNTBLANK outputs .

The SEQUENCE function generates an array of sequential numbers that can be used to quickly build dynamic data tables without manually entering values. For example, =SEQUENCE(10) creates a vertical array of numbers from 1 to 10. This is useful in scenarios like generating numbered rows for an index or assigning unique identifiers to entries, automating standard processes efficiently in spreadsheets .

The alt + = shortcut quickly inserts the SUM function into the selected cell, instantly adding adjacent cells' values. It's considered valuable since it streamlines the process of summing columns or rows of numbers, saving time for users and reducing the risk of manual formula entry errors, enhancing productivity .

Pressing F4 in Excel changes the cell reference type to absolute by adding dollar signs, such as from A1 to $A$1. This is crucial when copying formulas across cells as it locks the reference, ensuring that the original cell reference remains unchanged, which avoids errors in relative cell referencing during formula replication .

VLOOKUP searches for a value in the first column of a range and returns a value in the same row from a specified column. It is limited by its need for the search column to be the first. XLOOKUP offers more flexibility, allowing searches in any row or column and supporting search in both vertical and horizontal arrays. XLOOKUP can also handle errors more gracefully and return multiple values, making it a more robust and versatile alternative to VLOOKUP in most situations .

You might also like