Aspect |
Exact Match |
Approximate Match |
Definition |
Finds a value that exactly matches the lookup value. |
Finds the closest match less than or equal to the lookup value. |
Use Case |
Ideal for finding precise data points, like exact numbers or names. |
Used when searching for values within a range or category. |
Result |
Returns the corresponding data exactly matching the lookup value. |
Returns the closest matching value and associated data. |
Notation |
Often represented as “FALSE” or “0” in the “range_lookup” argument. |
Represented as “TRUE” or “1” in the “range_lookup” argument. |
Example |
Finding a specific customer’s account balance. |
Categorizing test scores into grade ranges. |
33. What is the difference between formulas and functions in Excel?
Formulas are defined by the user and used to calculate certain results. Formulas are either simple or complex and can consist of values, functions, defined names, etc. A function, on the other hand, is a built-in piece of code that is used to perform a specific action. Excel provides a huge number of built-in functions like SUM, PRODUCT, IF, SUMIF, COUNT, etc.
- What are Wildcards in Excel?
Wildcards in Excel are special characters that represent unknown or variable values when searching or filtering data. They are used as placeholders to match patterns or partial strings within a larger text or value. Wildcards are often used in functions such as COUNTIF, SUMIF, VLOOKUP, and others.

Here are the two main wildcards used in Excel:
- Asterisk (*) wildcard: An asterisk (*) represents any number of characters (including the null character) in a string.
For instance, when you utilize the formula =COUNTIF(A1:A5, “app*”), it will tally all cells within the range A1 to A5 that start with the word ‘app’ and are followed by any additional characters.

- Question mark (?) Joker: A question mark (?) represents a single character in a string.
For example, if you use the formula =COUNTIF(A1:A5, “ap?le”), it will count all cells in the range A1-A5 that contain ‘ap’ and any single character, then ‘le’. ‘.

35. Explain the difference between the SUBSTITUTE and REPLACE functions.
The SUBSTITUTE function is used to replace an occurrence of the given text in a string with new text.
Syntax:
SUBSTITUTE(text, old_text, new_text, [instance_num])
Example:
We want to replace “IT” with “Information Technology” in the Department column.
=SUBSTITUTE(C5, "IT", "Information Technology")

The REPLACE function is used to replace certain text in a string with new text.
Syntax:
REPLACE(old_text, start_num, num_chars, new_text)
Example:
We want to replace the first three characters of the Employee ID (103) with “999”.
=REPLACE(A2, 1, 3, "999")

36. Write the function to calculate compound interest.
Excel’s FV function calculates the future value of an investment or loan based on periodic payments, a fixed interest rate, and a certain number of periods. It is often used in financial planning, investment analysis, and loan calculations.
The syntax of the FV function is as follows:
FV (rate, nper, pmt, [pv], [type])
- interest: period-based interest. This should be consistent with the specified number of cycles.
- nper: total number of payment periods.
- pmt: payment made in each period. It can be a constant value or a cell reference.
- [dpv]: (optional) present value or capital of the investment or loan. If omitted, it is assumed to be 0.
- [type]: (Optional) Specifies whether payments are made at the beginning (1) or end (0) of each period. If omitted, it is assumed to be 0 (end-of-period payments).
Example:
Formula Used: =A2*(1+B2/C2)^(C2*D2)

37. Describe the volatile functions in Excel.
A volatile function in Excel is a function that recalculates when a change occurs in a workbook, regardless of whether the input values have actually changed. These operations are called volatile because they can significantly affect the performance and responsiveness of the workbook, especially when dealing with large amounts of data or complex formulas.
Here are a few examples of the volatile function:
NOW(), RAND(), TODAY(), OFFSET(), etc.
-
Write a function to extract the domain name from your Gmail.
=RIGHT(A2, LEN(A2) - FIND("@", A2))

39. Write the formula to extract the first name from a name.
=LEFT(B2, FIND(” “, B2) – 1)

40. When do we get a reference error?
A reference error typically occurs in spreadsheet programs like Excel when a formula or function references a cell that doesn’t contain valid data or a valid cell address. This error happens when the referenced cell is blank or contains an error itself, making it impossible for the formula to calculate or return a result.
41. What is the ABS function in Excel?
Excel’s ABS function is used to return the absolute value of a number. The absolute value of a number is its distance from zero, whether the number is positive or negative. The ABS function ensures that the result is always positive or zero.
42. Write a function to get the last date of the month.
Use the EOMONTH function to display the last date of the month in Excel. EOMONTH means ‘end of month’ and is specifically designed to return the last day of the corresponding month.
The syntax of the EOMONATO function is as follows:
EOMONTH(start_date, months)

43. Can we use VBA to edit the recorded macro?
Yes, you can use VBA (Visual Basic for Applications) to edit a macro saved in Excel. When you record a macro in Excel, it creates VBA code that represents the actions performed during recording. You can then use and edit this VBA code to make changes or improve the functionality of the recorded macro.
44. Use conditional formatting to highlight the top 10 selling products in each region.
- Select the sales data range, including the product and region columns.
- Click Home > Conditional Formatting > New Rule.

- In the New Formatting Rule dialog box, select Use a formula (=C2>=LARGE(IF($A$2:$A$21=A2, $C$2:$C$21), 10) to determine which cells to format.

- True Box Formula.
- Click Format and select the desired formatting for the top 10 selling products. For example, you can choose to highlight them in green.

- Click OK twice to close the dialog boxes.

45. How to Use the IF Function in Excel to Return a Specific Value Based on a Condition?
To achieve returning a specific value based on a condition, Excel’s IF function can be used. There is no built-in “True Box” formula. The IF function allows you to specify a condition and return one result if it’s true and another result if it’s false. For example, you could use the IF function to return a value of “Yes” if a cell is greater than 10 and “No” if it is not. This can be a useful tool in data analysis and decision-making.
Example:
=IF(B2>1000, "High Sales", "Low Sales")
=IF(B2>1000, "High Sales", "Low Sales")
where B2 = IF (B2>1000, "High Sales", "Low Sales")
where B2 = IF (B2>1000, "High Sales", "Low Sales")
where B2 is the cell containing the product sales for a specific region.
Excel Interview Questions For Data Analyst
46. What should you consider to design a user-friendly Excel dashboard?
To create a user-friendly Excel dashboard, keep the layout simple and organized with clear titles and labels. Group related information together and use consistent formatting to avoid confusion. Use charts and graphs to visually represent the data and make it easier to understand. Limit the amount of information displayed on one page to avoid overwhelming the user, and consider adding interactive features for further user engagement. Regularly update the dashboard to ensure it remains relevant and useful to its intended audience.
47. Why Would You “Freeze Panes” in Microsoft Excel?
Freezing a pane in a spreadsheet keeps a designated section of data stationary as you move through other information. This feature is often employed to ensure a particular element remains in place, such as an index or key data. By using freeze panes, users can navigate through a sheet without losing track of that important information, improving overall productivity and organization.
48. What Is a Surface Chart in Excel?
A surface chart is a 3D map used to display topological data that requires accurate coordinates. It provides a visual representation of the terrain, highlighting peaks, valleys, and slopes. The chart can be used to facilitate analysis and visualization of the topography of an area. It is especially useful for geology, geography, and earth science professionals who want to study and interpret landforms and identify patterns. The chart’s 3D nature allows for more precise analysis of data, providing insights that might not be evident from 2D visualizations.
49. What is a Bubble Chart in Excel?
A bubble chart is a type of scatter chart that represents a third variable through the size of the scatter dots. This chart allows for the tracking of three variables: X, Y, and the third variable indicated by the size of the bubbles. The larger the bubble, the larger the value of the third variable. This chart is useful for displaying multiple sets of data and comparing them visually.
50. What Is a Donut Chart in Excel?
A donut chart is a type of chart that uses concentric rings, similar to a pie chart but without a center. It can be a powerful visualization tool for presenting data in Excel.
51. How Can You Import Data From Another Workbook?
Microsoft Excel allows easy importing of data from another workbook through external references. By typing the source workbook name (SalesData) and the sheet from which data is to be pulled (Report), one can create an external reference between workbooks.
The command is simply written as follows:
='[SalesData.xlsx]Sheet1'!A2“
=[SourceWorkbook.xlsx]Sheet1!$A$1”.

It is important to note that the file extension must be included in the source workbook name.
52. What Is a Logical Test in Excel?
The IF() function in Excel can be used to create logical tests where an output is produced based on a specified scenario. For example, the code =IF(A1>0,”Yes”,”No”) tests whether a number in cell A1 is greater than 0 or not. If it is, the output will be “Yes” and if it is equal to or less than 0, the output will be “No”. This function can be useful in a variety of situations where conditional outputs are required.
=IF(B2>1000, "High Sales", "Low Sales")

53. What Is a Timeline Used for in Excel?
A timeline in Excel is used to represent a chronological sequence of events. It can visually display important dates and milestones on a horizontal or vertical axis, allowing users to quickly understand the sequence of events and their durations. Timelines can be applied to many industries and projects, such as project management, historical research, and marketing campaigns. Excel provides various tools and templates to create different types of timelines, including Gantt charts, milestone charts, and chronology charts.
54. What are the Major Types of Errors You Can Encounter in Excel?
Some of the major types of errors you can encounter in Excel are #DIV/0! (attempting to divide by zero), #REF! (a cell reference error), #NAME? (a formula error), #VALUE! (an error in a calculation due to an incorrect data type), and #N/A (a value is missing or cannot be found). It is important to identify and fix these errors in order to ensure the accuracy and integrity of your spreadsheet and its calculations.
55. What Does ‘Merge’ Do in Excel?
The “Merge” function in Excel helps to combine two or more adjacent cells into one cell. This is particularly helpful when dealing with lengthy texts or titles that are too long to fit in a single cell. The merged cell’s size automatically adjusts to accommodate the combined text. When you use the Merge function, the content from the upper-leftmost cell in the selected range will be preserved, and all other contents from the remaining cells will be removed. This function is located in the “Home” tab under the “Alignment” section in the ribbon.

56. What Does It Mean to “Hide” a Sheet?
Hiding a sheet in a workbook means that it is no longer visible in the sheet navigation but can still be accessed and edited unless additional protection is put in place. This is useful for archiving old information while keeping it accessible if needed.
57. What Is the Order of Operations in Excel?
The order of operations in Excel is as follows: first, any calculations inside parentheses are performed; second, any exponentiations are completed; third, multiplication and division are carried out from left to right; and finally, addition and subtraction are executed from left to right.
Remembering this order of operations is critical for getting accurate results in Excel. Invalid results can arise if the user does not follow the correct order.
58. How do you edit a formula?
To change a formula in a cell, double-click the cell to open the Formula Editor. You can then make your desired changes to the formula. The Formula Editor will automatically provide suggestions as you make changes, which can be helpful in remembering the correct parameters for the formula.

59. What is a radar chart?
A radar chart, also called a spider or web chart in Excel, is designed to compare different values for a single item. It consists of axes that emanate from a central point, each representing a specific metric. The axis’s length indicates the value of that metric, and all the axes meet at the center of the chart. This chart type is useful for displaying multiple data points and comparing them quickly. It provides a clear visual representation of different values and can help in identifying the strengths and weaknesses of the item being compared.
-
What is a stock chart?
A stock chart in Excel depicts the price of a stock over time, helping investors and traders track their investments and make informed decisions. These charts can display various data points, such as opening/closing prices, high/low prices, and trading volume. They are a crucial tool for analyzing market trends and forecasting future stock behavior. With Excel’s customizable features, users can create a personalized and visually appealing stock chart to analyze their portfolio’s performance.
Excel Salary Trends
Excel analysts in the US often make between $55,000 and $80,000 a year. Similarly, annual income in Europe ranges from €40,000 to €60,000. Excel experts in India earn between ₹300,000 and ₹600,000 a year.
Entry-level
In 2024, entry-level Excel job roles will offer competitive salaries globally. In the United States, the salary of entry-level Excel positions ranges between $40,000 and $55,000 annually. In India, it ranges between ₹250,000 and ₹400,000 per year. These figures reflect the demand for Excel skills across industries and regions.
Intermediate Level
In the US, intermediate-level jobs range from $55,000 to $75,000, and in India, it is between ₹400,000 and ₹600,000 per year
Senior Level
Senior-level Excel positions in the United States pay between $90,000 and $120,000 per year, and in India, it is between ₹800,000 and ₹1,200,000 per year. These numbers demonstrate how highly sophisticated Excel skills are valued in both domestic and international markets.
Excel Job Trends
Global Trends
According to LinkedIn, there are currently more than 30000+ open positions for an Excel expert in the United States.
Projected Growth
There is a significant demand for Excel skills in middle-skill positions, with 78% of such jobs requiring proficiency in spreadsheets or Excel. With an average 12% increase in earning potential associated with Excel proficiency, the market is projected to see robust growth in Excel-related job opportunities, reflecting the increasing importance of these skills across various industries.
Regional Trends
In the future, India is anticipated to witness a notable surge in Excel Expert positions, with an estimated availability of over 20,000 jobs by 2024.
Job Opportunities in Excel
Job Roles |
Responsibilities |
Business Analyst |
Business Analysts are responsible for communicating with both the technical team and the business team. They act as a bridge between the two and come up with inclusive solutions for the company. |
Data Analyst |
Data Analysts heavily work on data. Their responsibilities include finding KPIs (Key Performance Indicators), visualizing data, and predicting future trends. They are also responsible for creating insightful reports and documents. |
Market Research Analyst |
A market research analyst is responsible for performing duties like trend analysis, competitive analysis, sales analysis, etc. They are also responsible for creating extensive reports for the business. |
MIS Executive |
MIS Executive stands for Management Information System. They create strategies for all information technology operations in a company. Their duties include working extensively on Excel to develop plans for the businesses. |
Operations Analyst |
An Operations Analyst is responsible for setting up operations strategies for the organization. This includes heavy Excel work for reviewing existing policies, analyzing data, and creating reports. |
Administrative Assistant |
Administrative assistants are responsible for clerical tasks like file management, appointment scheduling, tracking company expenses, etc. |
Roles and Responsibilities for Excel-Related Jobs
According to the job posted on Naukri.com by Netapp
Role: Data Analyst (MS Excel, PowerBI, Tableau)
- Maintain and update customer information in the Customer Relationship Management (CRM) system.
- Administer and set up customer success tools and platforms to fulfill business needs.
- Understanding of data analysis tools and methodologies.
- Project management expertise and experience.
- Experience with SaaS and subscription-based business models.
- Well-developed systems proficiency, particularly in Excel
- Good knowledge of Pivot Tables, advanced filters
- Good written and oral communication skills
- An analytical mindset and critical thinking
Conclusion
Mastering Excel interview questions and answers is essential for those looking to advance their careers in data analysis, financial modeling, and business intelligence. It makes no difference whether you are just getting started and revising basic Excel functions or an expert working on advanced formulas, pivot tables, and even VBA; with this guide, you will be prepared to face your interview with confidence.
If you want to improve your skills, check out Intellipaat’s Excel courses.
Stay prepared, stay confident, and get your desired job with exceptional Excel skills!