Answers | Latest Version | 2025/2026 |
Correct & Verified
How do you quickly sum a column of numbers in Excel?
✔✔Use the SUM function, e.g., =SUM(A1:A10).
What formula would you use to find the average of numbers in cells B2 through B20?
✔✔=AVERAGE(B2:B20)
How can you lock a cell reference when copying a formula to other cells?
✔✔Use the dollar sign to make it absolute, e.g., $A$1.
Which function can you use to find the largest number in a range?
✔✔=MAX(range)
Which Excel feature allows you to create automatic charts from data?
✔✔Insert → Recommended Charts
1
, How do you create a dropdown list in a cell?
✔✔Use Data Validation and select List.
What formula would you use to combine the contents of two cells, A1 and B1, into one cell?
✔✔=A1 & B1 or =CONCATENATE(A1,B1)
How do you remove duplicate values from a column?
✔✔Use the Remove Duplicates feature under the Data tab.
Which function counts only numeric values in a range?
✔✔=COUNT(range)
How can you highlight all cells greater than 100 in a column?
✔✔Use Conditional Formatting → Highlight Cell Rules → Greater Than 100.
What formula would you use to find the minimum value in a range C1:C50?
✔✔=MIN(C1:C50)
2