How Function Works in Excel - Understanding Function Library, Arguments and Volatile Result
244 views
Apr 21, 2025
In this Excel tutorial, we'll explore how to use functions from the Function Library, understand what function arguments are, and see how the Function Arguments dialog box works. You'll learn about volatile functions like TODAY(), how to work with functions that require arguments like YEAR() and DAYS(), and how to create powerful nested functions using real-world examples. I'll also show you how to edit formulas safely and how nesting functions. 00:00 Inserting Functions with Function Library 01:36 Volatile Result 02:17 Understanding Arguments 03:32 Writing Functions Directly into Cells 03:57 Editing Functions 04:43 Nesting Functions 05:30 Understanding Common Errors
View Video Transcript
0:00
hi today we're talking about Excel
0:02
functions how they work and how you can
0:04
use them in your worksheets let's start
0:06
with inserting a function one of the
0:08
most commonly used functions in Excel is
0:10
sum to use it just select the cell right
0:12
below your numbers click the autosum
0:14
button on the ribbon and Excel
0:16
automatically inserts the sum function
0:18
to calculate the total you can also
0:20
insert a function manually by typing it
0:22
directly into a cell for example if you
0:25
want to enter today's date just type an
0:27
equal sign which tells Excel you're
0:29
entering a formula then type the word
0:31
today followed by parenthesis this
0:34
function doesn't need any inputs and it
0:36
returns the current date in the cell
0:39
another way to add functions is by using
0:41
the function library found in the
0:43
formulas tab it's a convenient option
0:45
because you can browse through
0:46
categories like financial logical text
0:49
date and time and many more when you
0:51
select a function from the library for
0:53
example let's choose the today function
0:56
excel opens a window called the function
0:58
arguments dialog box this box provides
1:00
helpful details about the function
1:02
you've selected at the top it says this
1:05
function returns the current date
1:06
formatted as a date the word returns
1:08
means the result the function gives back
1:11
after runs in this case it places
1:13
today's date into the cell where the
1:15
formula is written the next line reads
1:17
"This function takes no arguments."
1:20
Arguments are the pieces of information
1:22
or inputs you provide to a function so
1:24
it can perform its task some functions
1:26
need arguments and some like today or
1:29
now don't require any we'll discuss
1:31
arguments in more detail later when we
1:33
use functions that do require user input
1:36
finally at the bottom it says formula
1:39
result equals volatile in Excel a
1:41
volatile function is one whose result
1:43
updates automatically every time the
1:46
worksheet recalculates for example right
1:48
now while I'm recording this video
1:50
tutorial the date just changed as it hit
1:53
12:01 a.m now let's go ahead and change
1:56
any cell value that affect the
1:58
calculation like updating a number in
2:00
our formula the moment we do that watch
2:02
what happens both cells containing the
2:04
today formula instantly update to show
2:07
the new current date this happens
2:09
because the today function is what we
2:11
call a volatile function a function
2:13
whose result updates automatically
2:15
whenever Excel recalculates now let's
2:18
use some functions that take arguments
2:20
we'll start with the year function it
2:22
takes a single argument called serial
2:24
number which is basically a date you can
2:26
either type the date directly or use a
2:28
cell reference that contains the date
2:30
the function then returns just the year
2:32
part of that date some functions require
2:34
two arguments for example the days
2:37
function to try it out let's first write
2:39
two different dates in our sheet then go
2:42
to the function library in the formulas
2:44
tab and select the days function you'll
2:46
see the function arguments dialogue box
2:47
appear with two input boxes one for
2:51
end_ate and one for start underscore
2:53
date select the cell with the earlier
2:55
date for the start underscore date box
2:57
and the cell with the later date for the
2:58
n date box notice how the result is
3:01
displayed right there in the dialogue
3:03
box click okay and now Excel calculates
3:06
the total number of days between those
3:07
two dates other functions like sum can
3:10
take multiple arguments up to 256 of
3:14
them you can list individual numbers
3:16
cell references or entire ranges let's
3:18
write a sum formula in a cell type some
3:21
values separated by commas remember each
3:24
value or range you add is called an
3:26
argument press enter and you'll see the
3:28
total of your provided values displayed
3:32
instantly just like we manually wrote
3:34
the sum function directly into a cell
3:37
instead of using the function library
3:39
you can actually type out any function
3:40
this way you don't have to rely on a
3:42
library but for beginners it's really
3:44
helpful to use the function library
3:46
because it guides you through the
3:47
process showing which arguments a
3:49
function needs and how it works even
3:51
experienced users sometimes turn to it
3:54
when they need a quick reminder about a
3:55
function's details or structure if you
3:58
ever need to edit a function you've
3:59
written it's important to remember if
4:01
you just type over the result in the
4:03
cell it'll delete the existing formula
4:05
to properly edit a formula or function
4:08
you need to enter edit mode first you
4:10
can do this in a few ways the quickest
4:12
way is to doubleclick the cell
4:14
containing the formula and you'll see
4:16
the formula appear right there in the
4:17
cell ready for editing another way is to
4:20
click on the cell and press F2 on your
4:22
keyboard this also opens the formula
4:25
directly in the cell for editing or you
4:28
can simply click the cell once and look
4:29
up at the formula bar at the top of the
4:31
screen you'll see the formula displayed
4:33
there too and you can edit it from that
4:35
spot from any of these places you can
4:37
adjust the functions arguments fix
4:39
mistakes or even replace the function
4:41
entirely you can also use one function
4:44
inside another this is called a nested
4:46
function it might sound complicated at
4:48
first but it's actually very simple once
4:50
you get the hang of it for example
4:52
imagine you have a mix of positive and
4:54
negative numbers in a range and you want
4:56
to add up the absolute values ignoring
4:58
whether they're positive or negative you
5:00
could write a formula like the one shown
5:02
on the screen in this case the abs
5:04
function turns each number in the range
5:06
into its absolute value removing the
5:08
sign then the sum function adds them all
5:12
together to give you the total just
5:13
remember Excel always calculates the
5:16
innermost function first and then works
5:18
its way outward and once you're
5:20
comfortable nesting one function you can
5:22
start combining two three or even more
5:24
functions together to build really
5:26
powerful customized formulas thanks for
5:29
watching if you found this helpful like
5:31
the video and subscribe for more Excel
5:33
tips see you in the next tutorial
#Computer Education
#Educational Software
#Training & Certification