Excel Ques
Excel Ques
12. How do you merge cells, and why would you do it?
Answer: Cells can be merged using the "Merge & Center" feature to combine
multiple cells into one larger cell, often used for creating titles or headings.
19. Explain the difference between COUNT, COUNTA, and COUNTIF functions.
Answer: COUNT counts cells containing numbers, COUNTA counts all non-empty cells,
and COUNTIF counts cells that meet a specified condition.
20. Describe the VLOOKUP function and its limitations.
Answer: VLOOKUP searches for a value in the first column of a range and returns a
value in the same row from a specified column. Its limitations include the
inability to look to the left, performance issues with large datasets, and
incorrect results if the table needs to be sorted correctly when using approximate
match.
26. Describe the SUBTOTAL function and when you might use it.
Answer: The SUBTOTAL function returns a summary statistic (such as sum, average,
count) for a range, excluding rows that are not included in the result of a filter.
It's beneficial in filtered lists or tables to perform calculations only on visible
data.
27. How can you utilise the XLOOKUP function? Compare it with VLOOKUP and INDEX
MATCH.
Answer: XLOOKUP is a modern function designed to replace VLOOKUP, HLOOKUP, and
INDEX MATCH by searching a range or array for a match and returning the
corresponding item from a second range or array. Unlike VLOOKUP, it can search in
any direction, does not require the lookup value in the first column, and handles
errors and approximate matches more intuitively.