50 Most Asked MS Excel Interview Questions: by Khurshid MD Anwar
50 Most Asked MS Excel Interview Questions: by Khurshid MD Anwar
By Khurshid MD Anwar
1
InspireSkills Online Academy: 9143407019
Basic Level
1. What is MS Excel?
MS Excel is a spreadsheet program developed by Microsoft that
allows users to organize, format, and calculate data using formulas
and functions.
2. What are the basic components of an Excel worksheet?
o Cells
o Rows and Columns
o Worksheet Tabs
o Formula Bar
o Ribbon
3. What is a cell reference? Explain its types.
A cell reference is a way to identify a cell. The types are:
o Relative (A1)
o Absolute ($A$1)
o Mixed ($A1 or A$1)
4. How do you create a new worksheet in Excel?
Right-click on the worksheet tab and select Insert, or click the + icon
at the bottom.
5. What is a Pivot Table, and why is it used?
A Pivot Table is used to summarize, analyze, and extract meaningful
insights from large datasets.
6. What is the difference between a workbook and a
worksheet?
o Workbook: A file containing multiple worksheets.
o Worksheet: A single sheet within a workbook.
Intermediate Level
11. What is the difference between COUNT, COUNTA, and
COUNTIF?
• COUNT: Counts numeric values only.
• COUNTA: Counts all non-empty cells.
• COUNTIF: Counts cells that meet a specific condition.
12. How do you use the IF function in Excel?
Example:
3
InspireSkills Online Academy: 9143407019
14. What is the use of the CONCATENATE or CONCAT
function?
Combines text from multiple cells into one.
Example:
=MATCH(50, A1:A10, 0)
17. What is the difference between HLOOKUP and
VLOOKUP?
• VLOOKUP: Searches vertically in a column.
• HLOOKUP: Searches horizontally in a row.
18. How do you protect a worksheet?
Go to Review → Protect Sheet, set a password, and choose
permissions.
19. What is the purpose of the TRIM function?
Removes extra spaces from text except for single spaces between
words.
20. What is the difference between SUBTOTAL and SUM?
• SUM: Calculates the total of a range.
• SUBTOTAL: Allows filtering, excluding hidden rows.
4
InspireSkills Online Academy: 9143407019
Advanced Level
21. What is Power Query in Excel?
A tool for connecting, cleaning, and transforming data from various
sources.
22. What is the XLOOKUP function? How is it better than
VLOOKUP?
• XLOOKUP can search both vertically and horizontally.
• It eliminates the need for column numbers.
Example:
5
InspireSkills Online Academy: 9143407019
=TEXT(TODAY(), "MM/DD/YYYY")
28. How do you remove duplicates in Excel?
Select the range, go to Data → Remove Duplicates.
29. What is the use of Array Formulas?
Array formulas perform calculations on multiple values at once.
Example:
{=SUM(A1:A10*B1:B10)}
30. What is the purpose of the Pivot Chart?
Pivot Charts are visual representations of Pivot Table data, helping in
better analysis.
Intermediate to Advanced Level
31. What is the difference between Excel's FIND and
SEARCH functions?
• FIND: Case-sensitive and does not support wildcards.
• SEARCH: Not case-sensitive and supports wildcards like * and ?.
Example:
FIND("A", "Apple") → 1
SEARCH("a", "Apple") → 1
32. How do you handle errors in Excel formulas?
Use error-handling functions like:
• IFERROR: =IFERROR(A1/B1, "Error!")
• ISERROR: =IF(ISERROR(A1/B1), "Error!", A1/B1)
33. What is data validation in Excel?
Data validation restricts the type of data that can be entered in a cell.
Example: Restrict entries to numbers between 1 and 100.
6
InspireSkills Online Academy: 9143407019
34. What are dynamic arrays in Excel?
Dynamic arrays allow formulas to return multiple results that spill into
adjacent cells.
Example:
=SORT(A1:A10)
35. What is the use of the UNIQUE function?
Returns unique values from a range.
Example:
=UNIQUE(A1:A10)
36. How do you create a custom number format in Excel?
Go to Format Cells → Custom, and use format codes like #,##0.00.
37. What is the use of the TEXTJOIN function?
Combines text from multiple cells with a specified delimiter.
Example:
7
InspireSkills Online Academy: 9143407019
41. How do you create a dependent dropdown list in Excel?
Use Data Validation with a combination of named ranges and
INDIRECT.
42. What is the use of the SUBSTITUTE function?
Replaces specific text in a string.
Example:
=OFFSET(A1, 2, 3, 1, 1)
=TRANSPOSE(A1:A3)
50. How do you calculate the correlation between two
datasets in Excel?
Use the CORREL function:
Example:
=CORREL(A1:A10, B1:B10)