Data Analyst Interview Resources: post #2387 โ€” TG.ME

โœ… Excel Scenario-Based Questions for Interview & Practice ๐Ÿง ๐Ÿ“Š

๐Ÿ“Œ Scenario 91

Question: You have sales data for multiple regions and want to automatically return the region with the highest sales. How would you do it?

Answer: Use "INDEX()" with "MATCH()" and "MAX()".

Example:

"=INDEX(A2:A10,MATCH(MAX(B2:B10),B2:B10,0))"

This returns the region corresponding to the highest sales value.

๐Ÿ“Š Scenario 92

Question: You need to calculate the average sales for transactions greater than โ‚น50,000. How would you do it?

Answer: Use "AVERAGEIF()".

Example:

"=AVERAGEIF(B2:B100,">50000",B2:B100)"

This calculates the average of only those sales values greater than โ‚น50,000.

๐Ÿ“… Scenario 93

Question: You have a list of dates and want to group them into months for reporting. How would you do it?

Answer: Use a Pivot Table.

Add the Date field to Rows โ†’ Right-click any date โ†’ Group โ†’ Select Months (and Years if required).

๐Ÿ“ˆ Scenario 94

Question: Your manager wants to see sales performance visually and interactively by region, product, and month. What would you use?

Answer: Create a Pivot Chart with Slicers.

Create a Pivot Table โ†’ Insert Pivot Chart โ†’ Add slicers for Region, Product, and other relevant fields. This allows users to filter the report interactively.

๐Ÿ” Scenario 95

Question: You need to identify the 3rd highest unique sales value, even when duplicate sales amounts exist. How would you do it?

Answer: In modern Excel, combine "UNIQUE()" and "LARGE()".

Example:

"=LARGE(UNIQUE(B2:B100),3)"

This returns the 3rd highest distinct sales value.

๐Ÿ’ฌ Double Tap โ™ฅ๏ธ For More!
โค3
August 22, 2026 760 3