ð Data Analytics Interview Questions & Answers â Excel (Part 2) ðð¥
41. What is VLOOKUP?
Answer:
VLOOKUP (Vertical Lookup) is used to search for a value in the first column of a table and return a value from another column.
Syntax:
=VLOOKUP(A2,$F$2:$H$100,2,FALSE)
Example:
Find Employee Name using Employee ID.
42. Difference Between VLOOKUP and XLOOKUP?
Concept | VLOOKUP | XLOOKUP
Search direction | Searches left to right only | Searches in any direction
Column reference | Requires column number | Uses column reference
Function age | Older function | Newer and more flexible
Return columns | Can return only one column | Can return multiple columns
Example:
=XLOOKUP(A2,F:F,G:G)
43. What are Pivot Tables?
Answer:
Pivot Tables summarize large datasets quickly.
They can:
â Sum data
â Count records
â Calculate averages
â Create reports
Example:
Total Sales by Region.
44. What are Slicers in Excel?
Answer:
Slicers are visual filters used with Pivot Tables and Pivot Charts.
Benefits:
â Easy filtering
â Interactive dashboards
â User-friendly reports
45. Explain Conditional Formatting.
Answer:
Conditional Formatting automatically changes cell formatting based on conditions.
Examples:
â Highlight top sales
â Show duplicate values
â Color negative profits
46. Difference Between COUNT, COUNTA, and COUNTIF?
COUNT
Counts numeric cells only.
`=COUNT(A1:A10)`
COUNTA
Counts non-empty cells.
`=COUNTA(A1:A10)`
COUNTIF
Counts based on criteria.
`=COUNTIF(A1:A10,">100")`
47. What are Absolute and Relative References?
Relative Reference
Changes when copied.
`=A1 B1`
Absolute Reference
Remains fixed.
`=$A$1 $B$1`
48. What is Data Validation?
Answer:
Data Validation restricts what users can enter.
Examples:
â Dropdown lists
â Date restrictions
â Number ranges
Benefits:
â Reduces errors
â Improves data quality
49. Explain IFERROR().
Answer:
IFERROR handles errors and returns a custom value.
Example:
=IFERROR(A1/B1,"Error")
If B1 = 0, Excel returns "Error" instead of
#DIV/0!
50. What is Power Query?
Answer:
Power Query is Excel's ETL tool.
Used for:
â Importing data
â Cleaning data
â Transforming data
â Combining datasets
Common tasks:
Remove duplicates
Split columns
Merge tables
51. What are Dashboards in Excel?
Answer:
Dashboards provide visual summaries of KPIs and business metrics.
Common elements:
â KPI Cards
â Charts
â Slicers
â Pivot Tables
52. Difference Between SUMIF and SUMIFS?
SUMIF
One condition.
`=SUMIF(A:A,"East",B:B)`
SUMIFS
Multiple conditions.
`=SUMIFS(B:B,A:A,"East",C:C,"Electronics")`
53. Explain INDEX MATCH.
Answer:
A flexible alternative to VLOOKUP.
Example:
=INDEX(B:B,MATCH(A2,A:A,0))
Benefits:
â Faster
â More flexible
â Can lookup left or right
54. What are Macros?
Answer:
Macros automate repetitive tasks.
Examples:
â Formatting reports
â Refreshing dashboards
â Cleaning data
Recorded using:
View â Macros â Record Macro
55. What is VBA?
Answer:
VBA (Visual Basic for Applications) is Excel's programming language.
Used to:
â Automate tasks
â Create custom functions
â Build advanced reports
Example:
Sub Hello()
MsgBox "Welcome"
End Sub
56. How Do You Clean Data in Excel?
Answer:
Common techniques:
â Remove duplicates
â TRIM spaces
â Replace missing values
â Fix date formats
â Standardize text
Functions used:
TRIM()
CLEAN()
PROPER()
UPPER()
LOWER()
57. How Do You Remove Duplicates?
Answer:
Steps:
1. Select data
2. Data Tab
3. Remove Duplicates
Or use:
`=UNIQUE(A:A)`
(Excel 365)
58. What is Flash Fill?
Answer:
Flash Fill automatically detects patterns and fills data.
Example:
Input: John Smith
Desired output: J.Smith
Excel automatically learns the pattern.
Shortcut: Ctrl E
59. What are Named Ranges?
Answer:
Named Ranges assign names to cells or ranges.
Example:
Instead of: `=A1:A100`
Use: SalesData
Benefits:
â Better readability
â Easier formulas
60. Explain Text Functions in Excel.
Common functions:
LEFT()
RIGHT()
MID()
LEN()
TRIM()
CONCAT()
TEXT()
Example:
`=LEFT(A1,3)`
Returns first 3 characters.
61. What are Charts in Excel?
Answer:
Charts visually represent data.
Common charts:
â Bar Chart
â Line Chart
â Pie Chart
â Scatter Plot
â Histogram
62. How Do You Create Dynamic Dashboards?
Answer:
Use:
â Pivot Tables
â Pivot Charts
â Slicers
â Dynamic Named Ranges
â Power Query
This allows dashboards to update automatically.
63. What is Goal Seek?
Answer:
Goal Seek finds the required input value to achieve a desired result.
Example:
"What sales amount is needed to achieve â¹1,00,000 profit?"
64. What is Solver?
Answer:
Solver is an optimization tool.
Used to:
â Maximize profit
â Minimize cost
â Optimize resource allocation
Examples:
Budget planning
Production planning
65. Explain What-If Analysis.
Answer:
What-If Analysis evaluates different scenarios.
Tools include:
â Goal Seek
â Scenario Manager
â Data Tables
Example:
"What happens if sales increase by 20%?"
ð¥ Most Important Excel Topics for Data Analyst Interviews
Recruiters frequently ask about:
â
VLOOKUP / XLOOKUP
â
INDEX MATCH
â
Pivot Tables
â
Conditional Formatting
â
Power Query
â
IFERROR
â
SUMIF / SUMIFS
â
Dashboards
â
Data Cleaning
â
Excel Shortcuts
ð¡ Interview Tip:
If you're interviewing for a Data Analyst role, be ready to explain how you've used Excel to clean data, build reports, create dashboards, and automate repetitive tasks. Real-world examples make your answers much stronger than simply defining concepts.
Double Tap â€ïž For Part-3ð