Module 5 Flashcards

1
Q

How to make the cell interpret a text as text and not a formula

A

Single Apostrophe infront of it ‘
‘+text will read +text

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

Formula text vs reg text

A

‘+text is reg
=”+text” is formula now

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

Concatenation Operator

A

&

used when working with text,means glue these things together

=”Your total is”&D4

Put & between text things
=”Your total is” &D4&”Please pay!”

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

Convert a number to text

A

=TEXT(D4,”$0.00”)

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

Multiple Worksheets

A

Sheet name ! Cell reference is syntax

=Sheet1!B2+Sheet2!B2

Use ! to indicate sheet

-between sheets it is still relative references, if i have 3 sheets, and under b2 for the first two i put the number 100, if i drag on the third sheet, it would put 200 because it adds them like the formula above

-Single quotes go around the sheet name if there is spaces

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

Boolean Logic

A

Capital B

-True or False options
-can use < > = or things below

Operators that work on boolean values:
a) NOT
if x= T
not(x) = F

b) AND
if and(x,y)
for it to give T, BOTH x and y must be true

c) OR
if or(x,y)
only ONE has to be true to return TRUE, but if two true it returns TRUE
has a subcategory:
function XOR: means exclusive or,
if XOR(x,y)
same as OR except, if both are true, it returns FALSE

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

How is XOR written in fullhand

A

OR(AND(X,NOT(Y)),AND(NOT(X),Y))

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

Does IF function need to have a boolean value for the logical test parameter

A

YES

=IF(logical_test, [value_if_true], [value_if_false]

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

If u are wanting a function to return back a text, what must u do when u type it

A

” “
ie. =IF(D7>9, “y”, D4)

so if it is true, it will return the text y but if not it will reference d4

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

IF and Or used together

A

=IF(OR(D7=”Y”,A9=”Y”),”Discount”,”no discount”)

means, if d7= y or a9 = y, a discount text will be returned, but if both are false then no discount will be returned

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

Conditional Formatting button

A

Used when u want cell to change appearance if something is true

can use operations like < > = greater than equal to etc

-can make it light red fill with dark red text, etc stuff like that, can also add in symbols instead of colour.

-usually do this for a range of data

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

COUNTIF

A

=Countif(range, criteria)

criteria is in quotations
ex
=Countif(c10:c12, “>199”)
or
=COUNTIF(b10:b12),”ON”)
gives back a number/count

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

AVERAGEIF

A

=Averageif(range,criteria,[average_range])

the average range is the range of cells that we want to calculate the average for

the other parameters same as count if

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

COUNTIFS

A

=COUNTIFS(range,criteria1,range2,critera2,etc)

bascially saying count if there are some that have both as true

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

=VLOOKUP

A

=vlookup(lookup_value,table_array,col_index_num,[range_lookup])

lookup value: what we want to look for
table: which table
col_index_num: what column do we want to use (not the one with the lookup value)
range: two options to put here, either true:approx match, or false:exact match

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

What is the difference between true and false in the range_lookup of vlookup

A

True: gives approx match based on the value in the table that is smaller than the value give
ie: if my value is 88 but the range is 50 or 100, it will pick 50

HOWEVER, entries in first column must be sorted or else wont work
from smallest to largest

False: finds exact match, if not doesnt return anything
-table does not have to be sorted

17
Q
A