chapter 4 Flashcards

1
Q

function that randomly selects decimal (0-1)

A

RAND

this random-D(ecimal)

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

random integer number selected between two parameters

A

RANDBETWEEN

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

VLOOKUP

A

looks for a certain value in one column

returns the corresponding value in another collumn

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

HLOOKUP

A

look for a certain value in one row of a table

returns corresponding value from another row of same table

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

MATCH

A

search for a certain value in a range of cells and returns its position in the same range

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

INDEX

A

returns a value from within a range or a table based on a specified row and column coordinates

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

note days are seen as the base value (1)

A

each hour in the day is seen as a decimal

e.g. midday is 0.5

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

normalizing data for dates means we have to get it on the base unit of (days)

A

hence…
2 hours = 2/24
3 weeks = (3*7)/7

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

TODAY vs. NOW function

A

returns correspoding serial number of todays date

while NOW returns the date AND time as an integer

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

how to turn serial number into date… day, month or year

A

DAY()…. MONTH()…. YEAR()…. function

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

return serial number of a specified date

A

DATE()

NOTE- must be (year,month,day)

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

function to return no. of days between two dates

A

DAYS()

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

from serial number to hour, minute, second

A

HOUR()—MINUTE()—-SECOND()

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

get the weekday corresponding to a certain date

A

WEEKDAY

note. gives from numbers 1-7

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

number of working days between two dates

A

NETWORKDAYS()

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

given birth date and current date… find the age

A

DATEDIF()
returns value in months or years
interval argument must be “d”,”m” or “y”