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.
boolean example
If will only interpret boolean values (true or false) it will not interpret Y or N. To get around this:
=If(D7=“Y”
boolean example - discount
C7=$100
Discount = 10%
D7= good or bad customer
=if(D7=“Y”,C7*(1-Discount),C7)
If(logical test, value if true, value if false)
Student name -> =B3, C3, D3
=B3&” “&if(isblank)(C3),,&” “)&D3
if the cells contained no data for a particular student
if(iferror)(AVERAGE(E3:I3)),”not available”,average(E3:I3))
or (to simplify)
=iferror(average(E3:I3),0)
give you a number of cells where their values are above 1000.
=COUNTIF(E4,E:10,”>1000”)
give you a number of cells containing the words “ON”.
=COUNTIF(C4:C10,”ON”)
give you an average for a specific range within a certain group. (Average order for AB).
=AVERAGEIF($C$4:C$10$,”G4,$E$4:$E$103)
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.
=COUNTIFS(C$4$:C$10$,G4,C$4$:C$10$,”>1000”)
vlookup
=VLOOKUP(lookup_value, table array, col_index_num, [range_lookup])
=vlookup(value you’re trying to find, your range/array, column, true/false).
Vlookup
if the value can’t be found, display error message not in table.
=iferror)(vlookup(“ON”,taxtable,2,FALSE),”not in table”)
Example 2
Inexact or Exact lookup
Vlookup
Order Discount
500 2
700 3
100 5
=vlookup(10,discounts,2,TRUE)
inexact vs exact lookup
(false=exact match, true=inexact match)
true = inexact
false = exact
Table must be sorted from smallest to largest
Table does not have to be sorted.