By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
Softbuzz: Free software & smart tech tips for every userSoftbuzz: Free software & smart tech tips for every userSoftbuzz: Free software & smart tech tips for every user
  • Office
  • Windows
  • Software
  • News
  • Graphics
    • Adobe
    • Autodesk
    • Corel Draw
    Graphics
    Explore top free graphics tools, templates, and assets for designers. Boost your creative work with handpicked, high-quality resources.
    Show More
    Top News
    【Download】Tải Lightroom CC 2017 Bản Chuẩn Full Miễn Phí 2
    【Download】Tải Lightroom CC 2017 Bản Chuẩn Full Miễn Phí
    18/02/2021
    #1 Tải Adobe InDesign CC 2020 full vĩnh viễn - Đã test 100% 6
    #1 Tải Adobe InDesign CC 2020 full vĩnh viễn – Đã test 100%
    14/01/2021
    【Download】Autocad 2015 32bit / 64bit Bản Chuẩn Nhất Miễn Phí 10
    【Download】Autocad 2015 32bit / 64bit Bản Chuẩn Nhất Miễn Phí
    21/02/2021
    Latest News
    Free Lightroom CC Presets 2025 for Beginners: Download & Edit Guide
    14/08/2025
    Download SoftPerfect RAM Disk Full 2022 Vĩnh Viễn
    26/09/2022
    Download Reg Organizer 2022 Full VĨnh Viễn-Google Drive
    26/09/2022
    Phần mềm MAGix Vegas Pro v18 Full Repack Vĩnh Viễn 2022
    26/09/2022
  • Mobile
  • Games
  • Networking
  • Tips Trick
    • Computer tricks
    • Facebook tips
Search
  • About
  • Contact
© 2025 Softbuzz.net. All Rights Reserved.
Reading: Excel Functions Compilation for Office Workers
Share
Notification
Font ResizerAa
Softbuzz: Free software & smart tech tips for every userSoftbuzz: Free software & smart tech tips for every user
Font ResizerAa
  • Mobile
  • Games
  • Software
  • Computer tricks
Search
  • Categories
    • Games
    • Office
    • Windows
    • Mobile
    • Networking
    • Computer tricks
    • Facebook tips
Have an existing account? Sign In
Follow US
  • About
  • Contact
© 2025 Softbuzz.net. All Rights Reserved.
Softbuzz: Free software & smart tech tips for every user > Blog > Tips Trick > Computer tricks > Excel Functions Compilation for Office Workers
Computer tricksOffice

Excel Functions Compilation for Office Workers

Last updated: 02/06/2025 9:29 sáng
Share
Excel Functions Compilation for Office Workers 12
SHARE

Excel functions are indispensable tools for accountants or those who frequently work on Excel. They help you perform complex tasks on Excel. If you are not familiar with the basic Excel functions, do not miss the following article from Softbuzz.

Contents
SUM Function in Excel: Summing ArgumentsAVERAGE Function – Calculating the MeanMIN/MAX Functions: Finding the Largest or Smallest ValuesLEN Function – String Length MeasurementNETWORKDAYS Function – Calculating Working DaysCONCATENATE Function – String ConcatenationMATCH Function

SUM Function in Excel: Summing Arguments

First, let’s explore the SUM function:

Purpose of the SUM function: The SUM function in Excel is a commonly used function to calculate the total of arguments. Therefore, when using the SUM function, you save time in addition or mental calculation of data series.

Compilation of Excel functions for office workers

Structure: =SUM (number 1, number 2, …)

Function: To sum number 1, number 2, … where number 1, number 2, … are the arguments you want to sum.

Notes:

  • Logical values in cells: TRUE is considered 1, FALSE is 0.
  • If arguments are arrays or references: The numeric values in the array will be summed.

Examples:

  • =SUM (2, 5, 6) equals 13.
  • =SUM (2, 4, TRUE) equals 7.
  • =SUM (“5″,”3”,1) equals 8.

AVERAGE Function – Calculating the Mean

The second function to remember is the AVERAGE:

Purpose of the AVERAGE function: AVERAGE helps users quickly find the mean of a data series. This saves time when dealing with long numeric lists.

Structure: =AVERAGE(Number1, [Number2], [Number3], …). Where:

  • Number1: required
  • Number2, Number3, …: optional.

The AVERAGE function can handle up to 256 arguments, which can be numbers, names, ranges, or cell references containing numbers. Cells with logical values, text, or blanks are ignored. Zero values or directly entered numbers are included in calculations.

MIN/MAX Functions: Finding the Largest or Smallest Values

This is an essential Excel function for office workers:

Purpose of MIN/MAX functions: They allow easy identification of the highest or lowest value within a data range.

Excel Functions Compilation for Office Workers 15

Structure: MAX (number 1, number 2, …); MIN (number 1, number 2, …). Where: number 1, number 2 are arguments or data ranges.

Function: Returns the smallest or largest value in the data range.

Examples:

  • Largest value among 5, -20, 3, 4, 16
  • Formula: MAX (5, -20, 3, 4, 16) = 16.
  • Smallest value among 16, 100, 30, 49
  • Formula: MIN (16, 100, 30, 49) = 16.

LEN Function – String Length Measurement

This is another important Excel function:

Purpose of LEN: To measure the length of any string, use LEN. It will return the exact number of characters in the string.

Structure: LEN (text). Where: text is the string.

Function: Returns the number of characters, the length of the string.

Examples:

  • Measuring the length of the string “University of Da Nang”.
  • The calculation formula: =LEN (“University of Da Nang”) = 21.

NETWORKDAYS Function – Calculating Working Days

For office workers, counting working days is very essential. Using the NETWORKDAYS function helps you calculate accurately and quickly:

Purpose of NETWORKDAYS: You no longer need to count the number of working days manually. Excel supports you with the NETWORKDAYS function to calculate the total number of working days.

Structure: =NETWORKDAYS(START_DATE,END_DATE,[HOLIDAYS])

Function: Returns the number of working days between start_date and end_date, excluding holidays.

CONCATENATE Function – String Concatenation

Next, let’s learn about CONCATENATE:

Purpose of CONCATENATE: It helps combine strings from different cells. For example, you want to merge first name, middle name, last name into one cell showing the full name. Use CONCATENATE and select the cells to combine to achieve the desired result.

Excel Functions Compilation for Office Workers 17

Structure: CONCATENATE (text 1, text 2, …). Where:

  • Text 1: the first string. Required.
  • Text 2 …: optional. Up to 255 strings can be concatenated. Note that these should be separated by commas.

Function: Combines multiple text strings into a single continuous string.

MATCH Function

This is an essential function to learn:

Hàm MATCH: searches for a specific value within a table. If found, it returns the position of the cell in the table. If it’s a column, it returns the column result.

Examples: =MATCH(5,{3,7,5,8},0) = 3 or =MATCH(5,{3,5,7,8},1) = 2 or =MATCH(5,{8,7,5,3},-1) = 3

In summary, we’ve explored important Excel functions that office workers should master. Hope this helps you better understand these useful tools. Wishing you success in your work with Excel functions.

Onekey Ghost là gì? Hướng dẫn tạo và bung file ghost Windows siêu nhanh (2025)
What is Office Lens App? Best Scanning Tool for 2025
# 2 cách căn lề trong word 2016, 2010, 2013, 2019 chuẩn nhất
Common Zalo Errors and Effective Troubleshooting Methods for Zalo Malfunctions
Hướng dẫn cách mở bàn phím ảo win 10, win 7 nhanh nhất

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
[mc4wp_form]
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Copy Link Print
Share
Previous Article Over 5 Tips for Successful Facebook Live Selling in 2020 19 Over 5 Tips for Successful Facebook Live Selling in 2020
Next Article Common Zalo Errors and Effective Troubleshooting Methods for Zalo Malfunctions 21 Common Zalo Errors and Effective Troubleshooting Methods for Zalo Malfunctions
Không có bình luận

Để lại một bình luận Hủy

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *

Stay Connected

248.1kLike
69.1kFollow
134kPin
50kSubscribe

Latest News

Features of Microsoft Excel – 2025 Thumbnail
Features of Microsoft Excel (2025): Beginner & Pro Guide
Office
Funny 3D illustration of software firewall blocking viruses
What is Software Firewall: Full Guide to Functions & Benefits 2025
Antivirus
next-generation-firewall-ngfw
Next Generation Firewall NGFW: Full 2025 Guide & Features
Antivirus
Firewall Security Policy Management 2025
Firewall Security Policy Management: Complete 2025 Guide
Antivirus

You Might also Like

5 Methods to Fix IDM Not Capturing Links Error on Chrome 2021 33
Computer tricksSoftware

5 Methods to Fix IDM Not Capturing Links Error on Chrome 2021

6 Min Read
Top 8 Effective Ways to Fix Full Disk Error on Windows 10 in 2023 37
Computer tricksWindows

Top 8 Effective Ways to Fix Full Disk Error on Windows 10 in 2023

6 Min Read
【Download】Tải Visio 2010 64 bit / 32 bit Full Miễn Phí 41
Office

【Download】Tải Visio 2010 64 bit / 32 bit Full Miễn Phí

9 Min Read

Logo Footer Softbuzz

SOFTBUZZ aims to share technology knowledge, providing a warehouse of application software, office, graphics, windows, ghost and countless other entertainment software.

Quick Link

  • PRIVACY NOTICE
  • YOUR PRIVACY RIGHTS
  • INTEREST-BASE ADSNew
  • TERMS OF USE
  • OUR SITE MAP

Support

  • ADVERTISE
  • ONLINE BESTHot
  • CUSTOMER
  • SERVICES
  • SUBSCRIBE

Sign Up for Our Newsletter

Subscribe to our newsletter to get our newest articles instantly!

    Softbuzz: Free software & smart tech tips for every userSoftbuzz: Free software & smart tech tips for every user
    Follow US
    Softbuzz is part of the H2T Media Group, a digital publishing company focused on delivering trusted tech content and product insights.
    Welcome Back!

    Sign in to your account

    Username or Email Address
    Password

    Lost your password?