TGTGInsighttelegram intelligenceLIVE / telegram public index
← Data Analytics
Data Analytics avatar

TGINSIGHT POST

Post #2183

@sqlspecialist

Data Analytics

Views3,380Post view count
PostedAug 1308/13/2025, 08:44 AM
Post content

Post content

Excel Scenario-Based Questions Interview Questions and Answers : Scenario 1) Imagine you have a dataset with missing values. How would you approach this problem in Excel? Answer: To handle missing values in Excel: 1. Identify Missing Data: Use filters to quickly find blank cells. Apply conditional formatting: Home → Conditional Formatting → New Rule → Format only cells that are blank. 2. Handle Missing Data: Delete rows with missing critical data (if appropriate). Fill missing values: Use =IF(A2="", "N/A", A2) to replace blanks with “N/A”. Use Fill Down (Ctrl + D) if the previous value applies. Use functions like =AVERAGEIF(range, "<>", range) to fill with average. 3. Use Power Query (for large datasets): Load data into Power Query and use “Replace Values” or “Remove Empty” options. Scenario 2) You are given a dataset with multiple sheets. How would you consolidate the data for analysis? Answer: Approach 1: Manual Consolidation 1. Use Copy-Paste from each sheet into a master sheet. 2. Add a new column to identify the source sheet (optional but useful). 3. Convert the master data into a table for analysis. Approach 2: Use Power Query (Recommended for large datasets) 1. Go to Data → Get & Transform → Get Data → From Workbook. 2. Load each sheet into Power Query. 3. Use the Append Queries option to merge all sheets. 4. Clean and transform as needed, then load it back to Excel. Approach 3: Use VBA (Advanced Users) Write a macro to loop through all sheets and append data to a master sheet. Hope it helps :)