MS Excel Interview Guide From Basics To Advanced Mastery 1736152945
MS Excel Interview Guide From Basics To Advanced Mastery 1736152945
Basic QA
1. What is MS Excel, and how is it used in data analysis?
Answer:
MS Excel is a spreadsheet application used to organize, analyze, and visualize data.
In data analysis, it is used for creating reports, performing calculations, data
cleaning, and generating insights through charts and pivot tables.
1|Page
5. How do you use the VLOOKUP function?
Answer:
The VLOOKUP function searches for a value in the first column of a range and
returns a value in the same row from another column.
Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
8. What are conditional formatting rules, and how are they applied?
Answer:
Conditional formatting allows you to format cells based on specific conditions (e.g.,
highlight cells greater than 100).
Go to Home → Conditional Formatting → Select a rule type → Apply the rule.
2|Page
11. How do you create a chart in Excel?
Answer:
Select the data → Go to the Insert tab → Choose a chart type (e.g., Bar, Pie) →
Customize the chart as needed.
16. What are Excel Tables, and why are they useful?
Answer:
Excel Tables are structured data ranges with features like automatic filtering, sorting,
and dynamic referencing, simplifying data management.
3|Page
18. What is the purpose of the Text-to-Columns feature?
Answer:
Text-to-Columns splits text into separate columns based on a delimiter (e.g., comma,
space) or fixed width.
4|Page
20 Intermediate QA
1. How can you use the INDEX and MATCH functions together?
Answer:
The INDEX function returns the value of a cell at a specific position, and the MATCH
function finds the position of a value in a range.
Example Dataset:
Product Price Quantity
A 100 50
B 150 30
C 200 40
Formula to find the quantity of "B":
=INDEX(C2:C4, MATCH("B", A2:A4, 0))
Result: 30.
5|Page
4. How do you use the OFFSET function?
Answer:
OFFSET returns a reference to a range that is offset from a starting cell.
Example: To get the value 200 in the dataset:
=OFFSET(A1, 3, 1)
Result: 200 (moves 3 rows down, 1 column right).
6|Page
8. Explain the use of the LEN and TRIM functions.
Answer:
• LEN: Counts characters in a cell.
• TRIM: Removes extra spaces.
Example: If A1 = " Hello ",
=LEN(A1) → 10.
=LEN(TRIM(A1)) → 5.
7|Page
12. How do you group data in Pivot Tables?
Answer:
1. Right-click a column in the Pivot Table.
2. Select Group.
Example: Group sales by month or products by range.
8|Page
18. How do you use the FILTER function?
Answer:
FILTER extracts rows that meet criteria.
Example: Extract rows where Sales > 400:
=FILTER(C2:C10, C2:C10>400).
9|Page
20 Advance Interview QA
1. How do you create dynamic dashboards in Excel?
Answer:
Dynamic dashboards use Pivot Tables, Slicers, and charts linked to the data model.
Example Dataset:
Product Region Month Sales
A North Jan 500
B South Jan 300
A North Feb 700
• Create Pivot Tables to summarize data.
• Add Slicers for "Region" and "Month".
• Create charts to visualize trends.
10 | P a g e
4. How do you use the LET function in Excel?
Answer:
LET assigns names to calculations to reuse in formulas.
Example: Calculate (Sales - Cost) / Sales:
Sales Cost
500 300
Formula:
=LET(profit, A2-B2, margin, profit/A2, margin)
Result: 0.4 (40%).
11 | P a g e
8. How do you use the XLOOKUP function for two-way lookups?
Answer:
XLOOKUP searches both rows and columns.
Example Dataset:
Jan Feb
North 500 600
South 300 400
Find "Feb" sales for "North":
=XLOOKUP("North", A2:A3, XLOOKUP("Feb", A1:C1, B2:C3))
Result: 600.
12 | P a g e
11. How do you perform What-If Analysis using Goal Seek?
Answer:
Goal Seek finds the input value needed for a target output.
Example: Find the sales needed to achieve a profit of 500.
1. Set formula: Profit = Sales - Cost.
2. Use Goal Seek: Set Profit = 500.
13 | P a g e
15. How do you use VBA to automate tasks?
Answer:
Write macros to automate repetitive tasks.
Example: Automatically color cells with values > 100.
Sub ColorCells()
Dim rng As Range
For Each rng In Selection
If rng.Value > 100 Then
rng.Interior.Color = RGB(255, 0, 0)
End If
Next rng
End Sub
17. How do you use the UNIQUE and SORT functions together?
Answer:
Extract and sort unique values.
Example: =SORT(UNIQUE(A2:A10)).
14 | P a g e
19. How do you identify duplicate values across sheets?
Answer:
Use COUNTIF with 3D referencing.
Example: =COUNTIF(Sheet2!A:A, A1).
Khurshid Md Anwar
LinkedIn: https://www.linkedin.com/in/khurshidmdanwar/
15 | P a g e