Mod 5 - Advanced Excel Functions Flashcards

1
Q

What do you use to ensure excel is interpreting a label, such as, + tax, or = total, correctly?

A

Use an apostrophe before the label so excel will interpret it correctly.
ex. ‘+ tax

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What do you use so something is interpreted as text and not a formula?

A

Use quotation marks surrounding the phrase.

ex. “=Total”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is concatenation?

A

It is when two or more values are joined together and is often used to combine a few pieces of text that reside in different cells.
=CONCATENATE(text1, text2, etc.)
ex. First + middle + last name > reads as first middle last in a new cell

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is an ampersand (&) used for?

A

It is similar to the CONCATENATE function as it combines different text strings or values.
ex. D5 = 113
=”Your total is”&D5 reads as: Your total is 113

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the TEXT function?

A

It takes a number and converts it to a certain form.
=TEXT(value, format)
ex. =”Your total is”&TEXT(D5, “$0.00”)&”.”
reads as: Your total is $113.00.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the UPPER function?

A

It changes words in a cell to uppercase lettering.
=UPPER(text)
ex. =UPPER(C7)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you select part of a sentence to be shown?

A
Can use LEFT, RIGHT, MID. 
=LEFT(text, number of characters)
=MID(text, start at letter number, number of characters)
ex. LEFT(C9, 20)
=MID(C9, 10, 10)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the FIND function?

A

It finds a certain part of the text and tells you which character it is.
=FIND(find text, within text)
ex. =FIND(“@”, C13)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do I reference a cell from one worksheet in another?

A

Use an exclamation mark after the sheet name.

ex. Sheet1!B2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the possible Boolean values?

A

everything is either true or false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are the 3 primary Boolean operators?

A

or, and, not

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How does NOT work?

A

Basically opposites - you cannot have something.

not(x) is true, then x is false
not(x) is false, then x is true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How does AND work?

A

You must get both items to be true.
ex. you get fries AND salad with a meal

and(x, y) is true if both x is true and y is true.
and(x, y) is false if x is false
and(x, y) is false if y is false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What kind of OR does Boolean logic use?

A

It uses an inclusive OR where you can have either or both and it is true. (exclusive or is when you may have one or the other but not both)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How does OR work?

A

You can have 1 of the 2 or both and it will be true.

or(x, y) is true if x and y is true
or(x, y) is true if x is true
or(x, y) is true if y is true
or(x, y) is false if both x is false and y is false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Which operators produce Boolean results?

A

= … will show true or false

ex. =8>9 shows: FALSE

17
Q

What is the IF function?

A

=IF(logical test, value if true, value if false)

ex. =IF(D7=”Y”, C7*HST, 0)

18
Q

What is the ISBLANK function?

A

It returns true if a cell is empty, otherwise it returns false.
=ISBLANK(value)

ex. =ISBLANK(C7)

19
Q

What is the ISERROR function?

A

Can be used with the IF function to perform a different action if an error occurs - not very efficient so often an IFERROR function is used.

20
Q

Why are IS functions useful?

A

It provides you with information on a cell before performing a calculation or other action.

21
Q

What is the IFERROR function?

A

=IFERROR(value, value if error)

ex. =IFERROR(AVERAGE(E3:E13), 0)

22
Q

What is the COUNTIF function?

A

It allows you to count the number of cells within a range that meet a specified condition.
=COUNTIF (range, “criteria”)*

ex. =COUNTIF (E4:E103, “>1000”)
* can use COUNTIFS for multiple criteria

23
Q

What is the AVERAGEIF function?

A

It returns an average of all numbers in a range that meet a specified condition.
=AVERAGEIF(range, “criteria”, average range)

ex. =AVERAGEIF($C$4:$C$103, G4, $E$4:$E$103)

24
Q

What is the VLOOKUP function?

A

It uses a search key to find an entry with each cell acting as one entry.
=VLOOKUP(lookup value, table, column number, (in)exact)
aka
=VLOOKUP(lookup value/search key, table to search in, column to find the value in with the left most column being 1, whether to find a close match (true) or exact match (false))

ex. =VLOOKUP(C4, tax_table, 2, FALSE)

25
Q

What is the SUM function?

A

It adds values together.
=SUM(number 1, number 2, etc.)

ex. =SUM(B4, 7, D12)

26
Q

What is the SUMIF function?

A

It adds values together that meet a certain criteria.
=SUMIF(range, criteria, sum range)

ex. =SUMIF(B2:B7, “John”, C2:C7)
Only sums the values in C2:C7 that have cells corresponding to “John” in cells B2:B7.