chapter 4 Flashcards
function that randomly selects decimal (0-1)
RAND
this random-D(ecimal)
random integer number selected between two parameters
RANDBETWEEN
VLOOKUP
looks for a certain value in one column
returns the corresponding value in another collumn
HLOOKUP
look for a certain value in one row of a table
returns corresponding value from another row of same table
MATCH
search for a certain value in a range of cells and returns its position in the same range
INDEX
returns a value from within a range or a table based on a specified row and column coordinates
note days are seen as the base value (1)
each hour in the day is seen as a decimal
e.g. midday is 0.5
normalizing data for dates means we have to get it on the base unit of (days)
hence…
2 hours = 2/24
3 weeks = (3*7)/7
TODAY vs. NOW function
returns correspoding serial number of todays date
while NOW returns the date AND time as an integer
how to turn serial number into date… day, month or year
DAY()…. MONTH()…. YEAR()…. function
return serial number of a specified date
DATE()
NOTE- must be (year,month,day)
function to return no. of days between two dates
DAYS()
from serial number to hour, minute, second
HOUR()—MINUTE()—-SECOND()
get the weekday corresponding to a certain date
WEEKDAY
note. gives from numbers 1-7
number of working days between two dates
NETWORKDAYS()