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

TGINSIGHT POST

Post #2785

@sqlspecialist

Data Analytics

Views2,780Post view count
Posted22 days ago05/13/2026, 07:37 AM
Post content

Post content

🚀 Data Analyst Interview Questions with Answers — Part 3 🧮 Excel & Spreadsheets 21. How do you use Excel for quick data cleaning and analysis? Excel is widely used for fast data cleaning and exploration. Common tasks include: - Removing duplicates - Filtering and sorting data - Using formulas - Creating PivotTables - Applying conditional formatting - Cleaning text using functions like TRIM, UPPER, LOWER It is useful for quick business analysis without writing code. 22. How do you use "SUMIF", "COUNTIF", "VLOOKUP", and "XLOOKUP" in Excel? ✅ SUMIF → Adds values based on a condition =SUMIF(A:A,"Sales",B:B) ✅ COUNTIF → Counts cells matching a condition =COUNTIF(C:C,">500") ✅ VLOOKUP → Searches vertically for a value =VLOOKUP(101,A:D,2,FALSE) ✅ XLOOKUP → Modern replacement for VLOOKUP with more flexibility =XLOOKUP(101,A:A,B:B) 23. How do you remove duplicates and standardize text in Excel? 📌 Remove duplicates using: Data → Remove Duplicates 📌 Standardize text using functions: =TRIM(A2) =UPPER(A2) =LOWER(A2) =PROPER(A2) These functions help clean inconsistent formatting. 24. How do you use PivotTables for summarizing data? PivotTables quickly summarize large datasets without formulas. They help with: - Total sales by region - Average revenue by product - Monthly trends - Category-wise counts Steps: 1. Select dataset 2. Insert → PivotTable 3. Drag fields into Rows, Columns, and Values 25. How do you build simple dashboards in Excel? A basic Excel dashboard usually contains: - Charts - KPIs - PivotTables - Slicers - Conditional formatting Dashboards help stakeholders track important business metrics visually. 26. How do you use conditional formatting for insights? Conditional formatting highlights patterns automatically. Examples: - Highlight top performers - Show duplicate values - Identify low sales - Use color scales for trends Example: Home → Conditional Formatting → Highlight Cell Rules 27. How do you export data to CSV or share formatted reports? ✅ Save files as .csv for database imports or system sharing File → Save As → CSV ✅ Share formatted reports using: - Excel files - PDFs - Shared OneDrive/Google Drive links Always ensure formatting and labels are clear before sharing. 28. How do you handle large datasets in Excel vs a database? 📌 Excel is good for: smaller datasets and quick analysis. 📌 Databases are better for: - Millions of rows - Faster querying - Multi-user access - Better performance and security Analysts often use SQL databases for large-scale analysis. 29. How do you avoid common Excel pitfalls? Common best practices: - Avoid hard-coded numbers in formulas - Avoid merged cells - Don’t leave blank headers - Avoid inconsistent formatting Do instead: - Use proper labels - Keep raw data separate from analysis - Document formulas clearly 30. How do you document your Excel analyses? Good documentation includes: - Sheet descriptions - Formula explanations - Data-source details - Assumptions used - KPI definitions - Date/version tracking Proper documentation improves collaboration and reduces confusion. 🚀Double Tap ❤️ For Part-4