Beginner Flashcards
Sorting data in Excel allows you to organise your data for more effective visualisation, understanding and analysis. Some examples of the uses of this function are if you want to organise names in alphabetical order, to organise prices from highest to lowest, or rows by colours or icons.
Go on Home tab, press Sort.
The running total, also called a running count, allows you to watch the number of items in a table add up as you continue to enter new items.
=SUM($C$2:C2)
Formula that finds an average of a set of data
=AVERAGE(range)
Formula that calculates the arithmetic mean of a set of values, only of values that meet certain criteria.
=AVERAGEIF(range, criteria, [average_range])
Formula that is used to add up the values in a range that meet the criteria specified. equals to a number greater than a number less than a number greater or equal than a number not equal to a number not similar to a name starts with letter word is x digits long
=SUMIF(range, criteria, [sum_range]) =SUMIF(range, name, [sum_range]) =SUMIF(range, number, [sum_range]) =SUMIF(range, ">number", [sum_range]) =SUMIF(range, "=number", [sum_range]) =SUMIF(range, "<>number", [sum_range]) =SUMIF(range, "<>name", [sum_range]) =SUMIF(range, "letter*", [sum_range]) =SUMIF(range, "letter?????", [sum_range])
Formula that allows you to make logical comparisons between an actual value in a worksheet, and what you expect.
=IF(Something is TRUE, then do something, if not do something else)
Formula that helps to you find specific data in a table or in a specific range by row of data.
=VLOOKUP(value, table, col_index, [range_lookup])
Formula that searches for a value in the first row of a table. At the match column, it retrieves a value from the specified row.
=HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])
Formula that automatically counts the number of cells that meet the criteria you have specified.
=COUNTIF(range, criteria)
Formula that counts the number of empty cells in a specified range.
=COUNTBLANK(range)
Formula that counts the number of cells that are not empty in a given range.
=COUNTA(value 1,value 2)
Formula that counts the number of cells that contain numbers within the list of arguments.
=COUNT(range)
Formula that joins two or more text strings into one string.
=CONCATENATE(text1, [text2]…)
Formula to switch or rotate cells
=TRANSPOSE(range of cells to be transposed)
or
You can do this by copying, and then using the Transpose option in Paste Special, but be aware that this will create duplicated/static data i.e. any later changes to data in your original columns will not be pulled through to the transposed data.
Formula when you need to take three values presented separately and combine them to form a date.
=DATE(year,month,day)