Table of Contents
SUM
AVERAGE
MAX & MIN
COUNT & COUNTA
IF
TRIM
LEN
AND & OR
CONCATENATE
TODAY & NOW
Home Topics excel Basic Excel formulas & functions with examples

Basic Excel formulas & functions with examples

Apr 11, 2025 am 09:47 AM

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.

Basic Excel formulas & functions with examples

Basic Excel formulas & functions with examples

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).

Basic Excel formulas & functions with examples

  • 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).

Basic Excel formulas & functions with examples

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.

Basic Excel formulas & functions with examples

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.

Basic Excel formulas & functions with examples

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.

Basic Excel formulas & functions with examples

TRIM

Removes extra spaces from text. Syntax: TRIM(text)

  • =TRIM(A1): Removes leading/trailing spaces from A1.

Basic Excel formulas & functions with examples

LEN

Counts characters in a text string. Syntax: LEN(text)

  • =LEN(A2): Counts characters in A2 (including spaces).

Basic Excel formulas & functions with examples

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.

Basic Excel formulas & functions with examples

CONCATENATE

Combines text strings. Syntax: CONCATENATE(text1, [text2], ...)

  • =CONCATENATE(A2, " ", B2): Combines A2 and B2 with a space.

Basic Excel formulas & functions with examples

TODAY & NOW

Return the current date and time.

  • =TODAY(): Returns the current date.
  • =NOW(): Returns the current date and time.

Basic Excel formulas & functions with examples

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!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Excel formula to find top 3, 5, 10 values in column or row Excel formula to find top 3, 5, 10 values in column or row Apr 01, 2025 am 05:09 AM

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

How to add calendar to Outlook: shared, Internet calendar, iCal file How to add calendar to Outlook: shared, Internet calendar, iCal file Apr 03, 2025 am 09:06 AM

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

How to use Flash Fill in Excel with examples How to use Flash Fill in Excel with examples Apr 05, 2025 am 09:15 AM

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

Add a dropdown list to Outlook email template Add a dropdown list to Outlook email template Apr 01, 2025 am 05:13 AM

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

FV function in Excel to calculate future value FV function in Excel to calculate future value Apr 01, 2025 am 04:57 AM

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

MEDIAN formula in Excel - practical examples MEDIAN formula in Excel - practical examples Apr 11, 2025 pm 12:08 PM

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

How to remove / split text and numbers in Excel cell How to remove / split text and numbers in Excel cell Apr 01, 2025 am 05:07 AM

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

How to import contacts to Outlook (from CSV and PST file) How to import contacts to Outlook (from CSV and PST file) Apr 02, 2025 am 09:09 AM

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

See all articles