exam review module 3 Flashcards
how to avoid excel trying to interpret a formula
at apostrophes before and after.
‘+x
how to tell excel to interpret as text
use quotation marks
how to convert text to uppercase
=upper(c7) -> YOUR TOTAL AMOUNT IS 100 PLE….. (Converts text to uppercase)
how to show the first 20 characters of a specific cell.
=Left(c9,20) -> would only show the first 20 characters of a specific cell.
find text in the middle of something
mid(c9,10,5) -> text, starting number, number of characters
C13 = bob@uwaterloo.ca C14 = sally@uwaterloo.ca
Extracting the @ sign out of one of these emails:
=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 to use multiple work sheets
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$
true or false
ex: (7=5)=False …. (7>5)=True
Boolean
NOT
x=true -> not(x) = false
x=false -> not(X)=true
Boolean
AND
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
Boolean
OR
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
Boolean
Exclusive OR
you only get one
Boolean
Inclusive OR
you can have either, or both
x=t, y=t -> xor(x,y) = FALSE
Boolean example
E7=$113
BIG=$100
=E7>BIG -> TRUE
Boolean example
=if(D7,C7*HST,0
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.