LO 2 Flashcards

1
Q

What does every Excel formula begin with?

A

An equals sign (=).

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

What is BODMAS?

A

BODMAS stands for Brackets, Order (Power), Division, Multiplication, Addition, and Subtraction, dictating the order of operations in Excel.

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

How does Excel prioritize operations in a formula?

A

Excel follows the BODMAS rule, executing operations in this order: Brackets, Order, Division, Multiplication, Addition, and Subtraction.

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

What does the error value #DIV/0! indicate in Excel?

A

It appears when you are dividing by 0 or if the cell is empty.

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

What is a relative reference in Excel?

A

A relative reference changes when a formula is copied to another cell (e.g., A1 becomes A2 when copied down).

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

What is an absolute reference in Excel?

A

An absolute reference is fixed and does not change when a formula is copied (e.g., $A$1).

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

How do you make a cell reference absolute?

A

By adding dollar signs before the column letter and row number (e.g., $A$1).

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

What is a mixed cell reference in Excel?

A

A mixed reference locks either the row or the column (e.g., $A1 locks the column, A$1 locks the row).

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

How can you use the Insert Function button in Excel?

A

By clicking the Insert Function button (fx) in the Function Library group of the Formulas tab to search and insert functions.

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

What is the purpose of naming cells and ranges in Excel?

A

Named ranges can be used in formulas for easier reference and to make formulas more understandable.

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

How do you create a named range using the Name Box?

A

Select the range, then type the desired name into the Name Box and press Enter.

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

What is the syntax for the LEFT function in Excel?

A

LEFT(text, num_chars) returns the specified number of characters from the start of a text string.

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

What is the syntax for the MID function in Excel?

A

MID(text, start_num, num_chars) returns a specific number of characters from a text string, starting at the specified position.

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

How do you isolate the first two characters of the text in cell A1 using the LEFT function?

A

=LEFT(A1, 2).

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

What is the syntax for the RIGHT function in Excel?

A

RIGHT(text, num_chars) returns the specified number of characters from the end of a text string.

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

What formula can you use to calculate VAT for a product priced in cell B3 with a VAT rate in cell B12?

A

=B3*B12. Use absolute referencing for B12 if copying the formula (e.g., =B3*$B$12).

17
Q

How can you calculate the monthly profit/loss for Forth Valley Fitness in a spreadsheet?

A

Use the formula Total Income - Total Expenses for each month.

18
Q

What function calculates the total sales for a range named “Sales”?

A

=SUM(Sales).

19
Q

How do you use the IF function to check if a value in cell A1 is greater than 100 and return “Yes” or “No”?

A

=IF(A1 > 100, "Yes", "No").

20
Q

How can you calculate the profit/loss percentage for a specific month?

A

=Monthly Profit / Total Profit formatted as a percentage.

21
Q

What is the formula to calculate the price plus VAT if the VAT amount is in cell D3?

A

=Price + D3.

22
Q

How can you use absolute references to copy the VAT calculation correctly in a list of products?

A

Use the formula =B3*$B$12 to ensure the VAT rate in cell B12 does not change when copied.

23
Q

What does the error value #NAME? mean in Excel?

A

It appears when a formula contains text that Excel does not recognize, such as a misspelled function name or missing quotation marks.

24
Q

What does the #VALUE! error indicate?

A

It indicates that an incorrect type of argument or operator has been used in a function.

25
Q

How can you fix the ##### error in a cell?

A

Widen the column to fit the data.