exam review module 3 Flashcards

1
Q

how to avoid excel trying to interpret a formula

A

at apostrophes before and after.

‘+x

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

how to tell excel to interpret as text

A

use quotation marks

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

how to convert text to uppercase

A

=upper(c7) -> YOUR TOTAL AMOUNT IS 100 PLE….. (Converts text to uppercase)

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

how to show the first 20 characters of a specific cell.

A

=Left(c9,20) -> would only show the first 20 characters of a specific cell.

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

find text in the middle of something

A

mid(c9,10,5) -> text, starting number, number of characters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
C13 = bob@uwaterloo.ca
C14 = sally@uwaterloo.ca 

Extracting the @ sign out of one of these emails:

A

=Find(“@,C13) -> this will give you a number that represents which character in C13 has the “@“ symbol.

=Left(c13,FIND)”@“,C13)-1 -> C13 would now become “bob”

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

how to use multiple work sheets

A

sheet tab is at the bottom left of a workbook - you can rename these sheets

when working between sheets you use relative references

but you can use absolute references by using $$

ex: B2+C2 -> B$2$+C$2$

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

true or false

A

ex: (7=5)=False …. (7>5)=True

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

Boolean

NOT

A

x=true -> not(x) = false

x=false -> not(X)=true

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

Boolean

AND

A

x=t, y=t -> and(x,y)=t (only way and(x,y) will be TRUE)
x=t, t=f -> and(x,y) =f
x=f, y=t -> and(x,y)=f
x=f, y=f -> and(x,y)=f

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

Boolean

OR

A

x=t, y=f -> or(x,y)=t
x=f, y=t -> or(x,y)=t
x=f, y=f -> or(x,y)=f
x=t, y=t -> or(x,y)=t

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

Boolean

Exclusive OR

A

you only get one

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

Boolean

Inclusive OR

A

you can have either, or both

x=t, y=t -> xor(x,y) = FALSE

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

Boolean example

E7=$113
BIG=$100

A

=E7>BIG -> TRUE

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

Boolean example

=if(D7,C7*HST,0

A

so =if(true),C7 does pay tax, because C7 is multiplied by the 0
so =if(false), C7 does not pay tax because C7 is multiplied by HST value.

=if uses the true or false, what happens if the value is true, and what happens when the value is false.

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

boolean example

If will only interpret boolean values (true or false) it will not interpret Y or N. To get around this:

A

=If(D7=“Y”

17
Q

boolean example - discount

C7=$100
Discount = 10%
D7= good or bad customer

A

=if(D7=“Y”,C7*(1-Discount),C7)

18
Q

If(logical test, value if true, value if false)

A

Student name -> =B3, C3, D3

=B3&” “&if(isblank)(C3),,&” “)&D3

19
Q

if the cells contained no data for a particular student

A

if(iferror)(AVERAGE(E3:I3)),”not available”,average(E3:I3))

or (to simplify)

=iferror(average(E3:I3),0)

20
Q

give you a number of cells where their values are above 1000.

A

=COUNTIF(E4,E:10,”>1000”)

21
Q

give you a number of cells containing the words “ON”.

A

=COUNTIF(C4:C10,”ON”)

22
Q

give you an average for a specific range within a certain group. (Average order for AB).

A

=AVERAGEIF($C$4:C$10$,”G4,$E$4:$E$103)

23
Q

count only cells that are within a specific range, within a certain group, and are above 1000. COUNTIES is the same as COUNTIF, but with multiple criteria.

A

=COUNTIFS(C$4$:C$10$,G4,C$4$:C$10$,”>1000”)

24
Q

vlookup

A

=VLOOKUP(lookup_value, table array, col_index_num, [range_lookup])
=vlookup(value you’re trying to find, your range/array, column, true/false).

25
Q

Vlookup

if the value can’t be found, display error message not in table.

A

=iferror)(vlookup(“ON”,taxtable,2,FALSE),”not in table”)

26
Q

Example 2
Inexact or Exact lookup

Vlookup

Order Discount
500 2
700 3
100 5

A

=vlookup(10,discounts,2,TRUE)

27
Q

inexact vs exact lookup

A

(false=exact match, true=inexact match)

28
Q

true = inexact

false = exact

A

Table must be sorted from smallest to largest

Table does not have to be sorted.