pre-defined spreadsheet functions Flashcards
(11 cards)
Function: SUM()
📘 Purpose: Adds all the numbers in a range.
🧮 Example: =SUM(A1:A5) → Adds values from A1 to A5.
Function: AVERAGE()
📘 Purpose: Calculates the average (mean) of a range.
🧮 Example: =AVERAGE(B1:B5) → Finds the average of values in B1 to B5
Function: DATE()
📘 Purpose: Returns the current or specified date.
🧮 Example: =DATE(2025,4,16) → Returns April 16, 2025.
Function: MAX()
📘 Purpose: Finds the highest number in a range.
🧮 Example: =MAX(C1:C10) → Returns the largest value in C1 to C10.
Function: MIN()
📘 Purpose: Finds the lowest number in a range.
🧮 Example: =MIN(D1:D10) → Returns the smallest value in D1 to D10.
Function: COUNT()
📘 Purpose: Counts the number of numeric values in a range.
🧮 Example: =COUNT(E1:E10) → Counts only the numbers in E1 to E10.
Function: COUNTA()
📘 Purpose: Counts all non-empty cells in a range.
🧮 Example: =COUNTA(F1:F10) → Counts both text and numbers in F1 to F10.
Function: COUNTIF(range, criteria)
📘 Purpose: Counts cells that meet a specific condition.
🧮 Example: =COUNTIF(G1:G10, “>50”) → Counts how many cells in G1:G10 are greater than 50.
Function: VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
📘 Purpose: Looks for a value in the first column and returns a value from another column.
🧮 Example: =VLOOKUP(“John”, A2:C10, 3, FALSE) → Finds “John” in column A and returns the value from column C.
Function: PMT(rate, nper, pv)
Purpose: Calculates loan payments based on interest rate, number of periods, and loan amount.
🧮 Example: =PMT(0.05/12, 60, -10000) → Monthly payment for a $10,000 loan at 5% interest for 5 years.
Function: IF(logical_test, value_if_true, value_if_false)
📘 Purpose: Returns one value if a condition is true and another if false.
🧮 Example: =IF(H1>50, “Pass”, “Fail”) → If H1 is greater than 50, returns “Pass”; otherwise, “Fail”.