Basic Excel formulas & functions with examples
This tutorial introduces fundamental Excel formulas and functions, providing examples and links to more detailed guides. Microsoft Excel's strength lies in its numerical capabilities, enabling swift calculations and problem-solving across various fields, from simple sums to complex financial modeling. This tutorial covers essential function usage and formula construction.
Understanding Excel Formulas and Functions
Before exploring specific formulas, let's clarify key terms:
-
Formula: An expression calculating cell values. For instance,
=A2 A3 A4
sums values in cells A2 through A4. -
Function: A pre-built formula performing specific calculations.
=SUM(A2:A4)
achieves the same sum using the SUM function.
The Function Library (Formulas tab) lists all available Excel functions. Excel's Formula Intellisense provides syntax and argument suggestions as you type.
Ten Essential Excel Functions
Here are ten crucial functions for Excel proficiency:
SUM
Adds numbers. Syntax: SUM(number1, [number2], ...)
-
=SUM(B2:B6)
: Sums B2 to B6. -
=SUM(B2,B6)
: Sums B2 and B6. -
=SUM(B2:B6)/5
: Sums B2 to B6 and divides by 5. - Conditional sums use
SUMIF
:=SUMIF(A2:A6, D2, B2:B6)
(sums B2:B6 if A2:A6 matches D2).
- AutoSum quickly sums columns or rows.
AVERAGE
Calculates the average. Syntax: AVERAGE(number1, [number2], ...)
-
=AVERAGE(B2:B6)
: Averages B2 to B6. - Conditional averages use
AVERAGEIF
:=AVERAGEIF(A2:A6, D3, B2:B6)
(averages B2:B6 if A2:A6 matches D3).
MAX & MIN
Find the largest and smallest values.
-
=MAX(B2:B6)
: Finds the maximum value in B2 to B6. -
=MIN(B2:B6)
: Finds the minimum value in B2 to B6.
COUNT & COUNTA
Count numeric cells and non-blank cells respectively.
-
=COUNT(B:B)
: Counts numeric cells in column B. -
=COUNTA(B:B)
: Counts all non-blank cells in column B.
IF
Performs conditional logic. Syntax: IF(logical_test, [value_if_true], [value_if_false])
-
=IF(C2"", "Yes", "No")
: Returns "Yes" if C2 is not empty, "No" otherwise.
TRIM
Removes extra spaces from text. Syntax: TRIM(text)
-
=TRIM(A1)
: Removes leading/trailing spaces from A1.
LEN
Counts characters in a text string. Syntax: LEN(text)
-
=LEN(A2)
: Counts characters in A2 (including spaces).
AND & OR
Logical functions for multiple criteria.
-
AND
: Returns TRUE if all conditions are TRUE. -
OR
: Returns TRUE if at least one condition is TRUE.
CONCATENATE
Combines text strings. Syntax: CONCATENATE(text1, [text2], ...)
-
=CONCATENATE(A2, " ", B2)
: Combines A2 and B2 with a space.
TODAY & NOW
Return the current date and time.
-
=TODAY()
: Returns the current date. -
=NOW()
: Returns the current date and time.
Best Practices for Excel Formulas
- Avoid quoting numbers: Treat numbers as numbers, not text strings.
- Don't format numbers within formulas: Format the cell's output, not the input value.
- Match parentheses: Ensure proper pairing for complex formulas.
- Copy formulas: Use the fill handle to avoid retyping.
- Preserve values: Copy and paste values to retain results without formulas.
- Automatic Calculation: Ensure "Automatic" calculation is enabled.
This comprehensive overview provides a solid foundation for using basic Excel formulas and functions. Remember to consult the linked resources for more in-depth information on each function.
The above is the detailed content of Basic Excel formulas & functions with examples. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

This tutorial demonstrates how to efficiently locate the top N values within a dataset and retrieve associated data using Excel formulas. Whether you need the highest, lowest, or those meeting specific criteria, this guide provides solutions. Findi

This article explains how to access and utilize shared calendars within the Outlook desktop application, including importing iCalendar files. Previously, we covered sharing your Outlook calendar. Now, let's explore how to view calendars shared with

This tutorial provides a comprehensive guide to Excel's Flash Fill feature, a powerful tool for automating data entry tasks. It covers various aspects, from its definition and location to advanced usage and troubleshooting. Understanding Excel's Fla

This tutorial shows you how to add dropdown lists to your Outlook email templates, including multiple selections and database population. While Outlook doesn't directly support dropdowns, this guide provides creative workarounds. Email templates sav

This tutorial explains how to use Excel's FV function to determine the future value of investments, encompassing both regular payments and lump-sum deposits. Effective financial planning hinges on understanding investment growth, and this guide prov

This tutorial explains how to calculate the median of numerical data in Excel using the MEDIAN function. The median, a key measure of central tendency, identifies the middle value in a dataset, offering a more robust representation of central tenden

This tutorial demonstrates several methods for separating text and numbers within Excel cells, utilizing both built-in functions and custom VBA functions. You'll learn how to extract numbers while removing text, isolate text while discarding numbers

This tutorial demonstrates two methods for importing contacts into Outlook: using CSV and PST files, and also covers transferring contacts to Outlook Online. Whether you're consolidating data from an external source, migrating from another email pro
