CIS105: Computer Applications & Information Systems Lect. 6 Pt. 2
Author:Anda Toshiki
Updated:a day ago
Words:249
Reading:1 min
Chapter 6: Logical Functions
6.1: New Functions
AND
: Checks whether all arguments areTRUE
, and returnsTRUE
if all arguments areTRUE
.OR
: Checks whether any of the arguments areTRUE
, and returnsTRUE
orFALSE
.NOT
: ChangesTRUE
toFALSE
, orFALSE
toTRUE
.IF
: Checks whether a condition is met, and returns one value ifTRUE
, and another value ifFALSE
.- Nested
IF
: Using multipleIF
statements in one functions to account for multiple conditions.
- Nested
VLOOKUP
: Looks for a value in a table or a range veryicallyVLOOKUP
What you want to look up, where you want to look for it, the column number in the range containing the value to return, return an approximate or exact match: Indicates as1/TRUE
, or0/FALSE
.
HLOOKUP
: Looks for a value in a table or a range horizontally.COUNTIF
: Counts the number of cells within a range that meet the given condition.=COUNTIF(Where do you want to look? What do you want to look for?)
SUMIF
: Adds the cells specified by a given condition or criteria.AVERAGEIF
: s an Excel Statistical function, which calculates the average of a given range of cells by a specific criterion.
6.2: Comparison Operators
>
: More than<
: Less than>=
: More than or equal to<=
: Less that or equal to
6.3: Reminder
- Excel does not recognize tex
- When searching for keywords, put keyword between
""
delimiters.
- When searching for keywords, put keyword between