pre-defined spreadsheet functions Flashcards

(11 cards)

1
Q

Function: SUM()

A

📘 Purpose: Adds all the numbers in a range.

🧮 Example: =SUM(A1:A5) → Adds values from A1 to A5.

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

Function: AVERAGE()

A

📘 Purpose: Calculates the average (mean) of a range.

🧮 Example: =AVERAGE(B1:B5) → Finds the average of values in B1 to B5

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

Function: DATE()

A

📘 Purpose: Returns the current or specified date.

🧮 Example: =DATE(2025,4,16) → Returns April 16, 2025.

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

Function: MAX()

A

📘 Purpose: Finds the highest number in a range.

🧮 Example: =MAX(C1:C10) → Returns the largest value in C1 to C10.

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

Function: MIN()

A

📘 Purpose: Finds the lowest number in a range.

🧮 Example: =MIN(D1:D10) → Returns the smallest value in D1 to D10.

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

Function: COUNT()

A

📘 Purpose: Counts the number of numeric values in a range.

🧮 Example: =COUNT(E1:E10) → Counts only the numbers in E1 to E10.

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

Function: COUNTA()

A

📘 Purpose: Counts all non-empty cells in a range.

🧮 Example: =COUNTA(F1:F10) → Counts both text and numbers in F1 to F10.

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

Function: COUNTIF(range, criteria)

A

📘 Purpose: Counts cells that meet a specific condition.

🧮 Example: =COUNTIF(G1:G10, “>50”) → Counts how many cells in G1:G10 are greater than 50.

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

Function: VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

A

📘 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.

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

Function: PMT(rate, nper, pv)

A

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.

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

Function: IF(logical_test, value_if_true, value_if_false)

A

📘 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”.

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