Advanced Flashcards
Formula that checks ALL the arguments are met or not
=AND(cell>”logical1”, cell>”logical2”,…)
From where do you add a drop-down list?
Click on ‘Data’ ribbon, then click on ‘Data Validation’ tab
Formula that allows you to round up by multiples of any given number. e.g. if you wish to purchase 6 oranges, but they only sell in multiples of 8, you will be billed for 8; if you want 15 you will be billed for 16
=CEILING(cell,8)
Formula used to return a value from a list. You can use it to return text, numbers, dates and more. e.g. if you assign values 1 to 12 as months of the year, the formula will return the month corresponding to that number. 1 would return January, 2 would return February, etc.
=CHOOSE(index_num,value1,[value2],…)
index_num: The value to choose. A number between 1 and 254.
Value1: The first value from which to choose.
Value2: The second value from which to choose.
Formula used to compare data in columns; If we have two lists to compare in Excel.
=VLOOKUP(lookup_value, table_array, col_index_num, 0).
=IFERROR(VLOOKUP(lookup_value, table_array, col_index_num, 0), “New Value”).
Formula to find out if there is a correlation between two sets of data.
=CORREL(array1, array2)
In Excel, if you have a single numerical data set that you wish to have a visual indicator for, but don’t necessarily need a chart, in cell indicators can be used. Where can you find that?
Select your data, go to Conditional Formatting, then choose your formatting type
formula that is used to calculate the number of days, months or years between two dates.
=DATEDIF(start_date,end_date,unit)
Unit - The type of information you want returned (days, months or years.)
“d” = Days between the two dates.
“m” = Months between the two dates.
“y” = Years between the two dates.
“yd” = Days between the dates, as if the dates were in the same year.
“ym” = Months between the dates, as if the dates were in the same year.
“md” = Days between the two dates, as if the dates were in the same month and year.
formula that finds the average values of all cells in a column or database that contain the criteria you set.
=DAVERAGE(database, field, criteria)
field - the column of data you want to find
formula that will count the cells in a column or database that contain the criteria you set
=DCOUNT(database, field, criteria)
formula that will count the cells in a column or database that are not blank
=DCOUNTA(database, field, criteria)
Depreciation formula
=DB(cost, salvage, life, period)
Formula to extract a single value from a database or list column that matches the conditions you set.
=DGET(database, field, criteria)
Formula that will return the largest number in a column or database that contains the criteria you set
=DMAX(database, field, criteria)
Formula that will return the smallest number in a column or database that contains the criteria you set
=DMIN(database, field, criteria)
Formula that will multiply the value of all numbers in a column or database that contains the criteria you set
=DPRODUCT(database, field, criteria)
Formula that will add the values of all cells in a column or database that contain the criteria you set
=DSUM(database, field, criteria)
Formula that returns the date that is the specified amount of months after a set date
=EDATE(start_date, months)