7
USING OTHER FUNCTIONS

Using other functions

Embed Size (px)

Citation preview

Page 1: Using other functions

USING OTHER FUNCTIONS

Page 2: Using other functions

Using Date Functions

NOW & TODAY

Page 3: Using other functions

Using Now

If you want to calculate the current date and time (that is your system clock), use

=NOW()

Page 4: Using other functions

Using Today

If you want to include just the date, use

=TODAY()

Page 5: Using other functions

Using Logical Function

Logical function is a powerful worksheet function that enables you to add decision-making and logical preference for your worksheets.

Page 6: Using other functions

IF Function

IF statement is very useful for testing a cell and making decisions based on cell content.

Syntax:

If(logical_test,value_if_true,value_if_false)

Page 7: Using other functions

IF statement requires three arguments:

Logical_Test - is any value or expression that can be evaluated to True or False.

Value_if_true – is the value that is returned if logical_test is TRUE.

Value_if_false – is the value that is returned if logical test is FALSE.