INDEX and MATCH Function in Excel
Last Updated :
08 Aug, 2025
The INDEX function retrieves a value from a specified location within a range, using row and column offsets. It is a tool for pinpointing data in a table.
INDEX Function Syntax in Excel:
=INDEX(reference, [row], [column])
Parameters:
- array: The range containing the data (e.g., A1:C10).
- row_num: The row number of the value to retrieve.
- column_num (optional): The column number of the value to retrieve.
How to Use an INDEX Function in Excel
Follow the below steps to learn how to use INDEX Function in Excel:
Step 1: Select the Data Range
Identify the range where our data is stored, such as A1:C10.
Step 2: Specify the Row Number
Indicate the row containing the desired data point.
Step 3: Specify the Column Number
For multi-column ranges, provide the column number to locate the exact cell.
The following table will be used as a reference table for all the examples of the INDEX function. First Cell is at B3 (“FOOD”) and the Last Diagonal Cell is at F10 (“180”).
Reference TableExample 1: No Rows and Columns are mentioned.
If neither the row nor the column is specified, the INDEX function will return the entire data range.
Step 1: Input Command
Use Command "=INDEX(B3:C10)"
Step 2: Preview Result
Preview the below result
Preview ResultsExample 2: Only Rows are Mentioned
If only the row number is provided, the INDEX function will return all values in that row within the range.
Step 1: Input Command
=INDEX(B3:C10,2)
Step 2: Preview Result
Returns all values from the second row of the range (e.g., B4:C4).
Preview ResultsExample 3: Both Row and Column Specified
When both the row and column numbers are specified, the INDEX function will return the value from the specific cell.
Step 1: Input Command
=INDEX(B3:D10,4,2)
Step 2: Preview Result
Returns the value from the fourth row and second column of the range (e.g., C6).
Preview ResultsExample 4: Only Column Specified
If only the column number is provided, the INDEX function will return all values from that column within the range.
Step 1: Input Command
=INDEX(B3 : D10 , , 2)
Step 2: Preview Results
Returns all values from the second column of the range (e.g., C3:C10
).
Preview ResultsMATCH Function in Excel
The MATCH function in Excel is used to locate the position of a specific value within a row, column, or array. Unlike VLOOKUP or HLOOKUP, the MATCH function does not return the actual data but instead provides the relative position of the value. It is case-insensitive and works seamlessly in both horizontal and vertical ranges.
MATCH Function Syntax
=MATCH(search_key, range, [search_type])
Parameters:
- lookup_value: The value to search for (e.g., “South Indian” or 42).
- lookup_array: A single row or column to search (e.g., A1:A10).
- match_type (optional):
- +1: Largest value less than or equal to lookup_value (ascending order).
- 0: Exact match (unsorted data, most common).
- -1: Smallest value greater than or equal to lookup_value (descending order).
How MATCH Works with INDEX
The MATCH function is often paired with the INDEX function to dynamically determine the row or column number, enabling precise data retrieval. For instance, if we want to find the position of an item and use that position in the INDEX function to retrieve corresponding data, the MATCH function provides a seamless solution.
How to Use MATCH Function in Excel
Follow the below steps to learn how to use MATCH Function in Excel:
Step 1: Choose the Lookup Value
- Identify the value to locate (e.g., a number or text).
Step 2: Select the Lookup Range
Define the one-dimensional range (row or column) where Excel should search for the lookup value.
Step 3: Specify the Match Type
- Use
0
for an exact match. - Use
1
for an approximate match in ascending order. - Use
-1
for an approximate match in descending order.
MATCH Function Example
Reference Table: The following table will be used as a reference table for all the examples of the MATCH function. First Cell is at B3 (“FOOD”) and the Last Diagonal Cell is At F10 (“180”)
Reference TableExample 1: Exact Match (match_type = 0)
Find the row number of the food type "South Indian".
Step 1: Input Command
=MATCH(“South Indian”,C3:C10,0)
Step 2: Preview Results
The function returns 1, as "South Indian" first appears in the first row of the lookup range.
Preview ResultsExample 2: Approximate Match in Ascending Order (match_type = 1)
Find the position of the largest value less than or equal to 70 in the Cost column.
Step 1: Input Command
=MATCH(“South Indian”,C3:C10)
- Sort the Cost column in ascending order.
- Input the formula and press Enter.
Step 2: Preview Results
The function returns 2, as the largest value less than or equal to 70 is 50 (located in the second row of the range).
Preview ResultsExample 3: Approximate Match in Descending Order (match_type = -1)
Find the position of the smallest value greater than or equal to 80 in the Cost column.
Step 1: Input Command
=MATCH(80, D3:D6, -1)
- Sort the Cost column in descending order.
- Input the formula and press Enter.
Step 2: Preview Results
The function returns 2, as the smallest value greater than or equal to 80 is 80 (located in the second row of the range).
Input CommandHow to use the INDEX MATCH Excel Function Combination
The combination of INDEX and MATCH in Excel is a dynamic and efficient way to perform data lookups. Unlike using static row and column numbers in the INDEX function, we can use the MATCH function to dynamically determine the positions of rows and columns based on specific criteria. This method is not only flexible but also eliminates many limitations of VLOOKUP.
Syntax:
=INDEX(array, MATCH(lookup_value, lookup_array, [match_type]), MATCH(lookup_value, lookup_array, [match_type]))
Example Reference Table
The following reference table will be used. First Cell is at B3 (“FOOD”) and the Last Diagonal Cell is At F10 (“180”)
Reference Table
Example: Let's say the task is to find the cost of Masala Dosa. It is known that column 3 represents the cost of items, but the row position of Masala Dosa is not known. The problem can be divided into two steps:
Step 1: Find the Row Position
Find the position of Masala Dosa by using the formula:
=MATCH("Masala Dosa",B3:B10,0)
Here B3:B10 represents Column “Food” and 0 means Exact Match. It will return the row number of Masala Dosa.
Step 2: Use INDEX Function
Find the cost of Masala Dosa. Use the INDEX Function to find the cost of Masala Dosa. By substituting the above MATCH function query inside the INDEX function at the place where the exact position of Masala Dosa is required, and the column number of cost is 3 which is already known.
=INDEX(B3:F10, MATCH("Masala Dosa", B3:B10 , 0) ,3)
Use INDEXTwo-Way Lookup with INDEX and MATCH
In the above example, the column position for the cost was hardcoded. If we want to make the column lookup dynamic as well, use a MATCH function for the column position.
=INDEX(B3:F6, MATCH("Masala Dosa", B3:B6, 0), MATCH("Cost", B3:F3, 0))
Here B3:F3 represents Header Column.
Result: 60
Using INDEX MATCH For Advanced Lookups
One of the key advantages of INDEX and MATCH over the VLOOKUP function is the ability to perform a “left lookup”. It means it is possible to extract the row position of an item from using any attribute at right and the value of another attribute in left can be extracted.
For Example, Let's say buy food whose cost should be 140 Rs. Indirectly we are saying buy “Biryani”. In this example, the cost Rs 140/- is known, there is a need to extract the “Food”. Since the Cost column is placed to the right of the Food column. If VLOOKUP is applied it will not be able to search the left side of the Cost column. That is why using VLOOKUP it is not possible to get Food Name.
1. Left Lookup with INDEX and MATCH
The INDEX MATCH combination can perform a left lookup, which is not possible with VLOOKUP.
Example: Find the food item where the cost is 140
.
Step 1: Extract Row Position
First extract row position of Cost 140 Rs using the formula:
=MATCH(140, D3:D10,0)
Here D3: D10 represents the Cost column where the search for the Cost 140 Rs row number is being done.
Step 2: Use INDEX Function
After getting the row number, the next step is to use the INDEX Function to extract Food Name using the formula:
=INDEX(B3:B10, MATCH(140, D3:D10,0))
Here B3:B10 represents Food Column and 140 is the Cost of the food item.
Result: Biryani
Cost Displayed2. Case-Sensitive Lookup
The MATCH function is not case-sensitive by default. To perform a case-sensitive lookup, use the EXACT function in combination with INDEX.
By itself, the MATCH function is not case-sensitive. This means if there is a Food Name “DHOKLA” and the MATCH function is used with the following search word:
- “Dhokla”
- “dhokla”
- “DhOkLA”
All will return the row position of DHOKLA. However, the EXACT function can be used with INDEX and MATCH to perform a lookup that respects upper and lower case.
Exact Function: The Excel EXACT function compares two text strings, taking into account upper and lower case characters, and returns TRUE if they are the same, and FALSE if not. EXACT is case-sensitive.
Examples:
- EXACT("DHOKLA","DHOKLA"): This will return True.
- EXACT("DHOKLA","Dhokla"): This will return False.
- EXACT("DHOKLA","dhokla"): This will return False.
- EXACT("DHOKLA","DhOkLA"): This will return False.
Example: Let say the task is to search for the Type Of Food “Dhokla” but in Case-Sensitive Way. This can be done using the formula-
=INDEX(C3:C10, MATCH(TRUE , EXACT("Dhokla", B3:B10) ,0))
Here the EXACT function will return True if the value in Column B3:B10 matches with “Dhokla” with the same case, else it will return False. Now MATCH function will apply in Column B3:B10 and search for a row with the Exact value TRUE. After that INDEX Function will retrieve the value of Column C3:C10 (Food Type Column) at the row returned by the MATCH function.
Use Function >>Preview Results3. Multiple Criteria Lookup
One of the trickiest problems in Excel is a lookup based on multiple criteria. In other words, a lookup that matches on more than one column at the same time. In the example below, the INDEX and MATCH function and boolean logic are used to match on 3 columns-
To extract total cost.
Example: Let's say the task is to calculate the total cost of Pasta where
- Food: Pasta.
- Cost: 60.
- Quantity: 1.
So in this example, there are three criteria to perform a Match. Below are the steps for the search based on multiple criteria-
Step 1: Match the Food Column
First match Food Column (B3:B10) with Pasta using the formula:
"PASTA" = B3:B10
This will convert B3:B10 (Food Column) values as Boolean. That Is True where Food is Pasta else False.
Step 2: Match Cost
After that, match Cost criteria in the following manner:
60 = D3:D10
This will replace D3:D10 (Cost Column) values as Boolean. That is True where Cost=60 else False.
Step 3: Match Third Criteria
Next step is to match the third criteria that are Quantity = 1 in the following manner:
1 = E3:E10
This will replace E3:E10 Column (Quantity Column) as True where Quantity = 1 else it will be False.
Step 4: Multiply the Results
Multiply the result of the first, second, and third criteria. This will be the intersection of all conditions and convert Boolean True / False as 1/0.
Step 5: Use MATCH Function
Now the result will be a Column with 0 And 1. Here use the MATCH Function to find the row number of columns that contain 1. Because if a column is having the value 1, then it means it satisfies all three criteria.
Step 6: Use INDEX Function
After getting the row number use the INDEX function to get the total cost of that row.
=INDEX(F3:F10, MATCH(1, ("Pasta"=B3:B10) * (60=D3:D10) * (1=E3:E10) , 0 ))
Here F3:F10 represents the Total Cost Column.
F3 represents the Total column4. Using INDEX and MATCH Across Different Sheets
To retrieve data from a different sheet, simply reference the sheet name.
To use the INDEX and MATCH functions across different sheets in Excel, we simply need to reference the sheet name in the formula. This method allows we to search for data in one sheet and return it to another, making it a powerful tool for multi-sheet data analysis.
Basic Syntax for INDEX and MATCH Across Sheets
=INDEX(SheetName!Range, MATCH(LookupValue, SheetName!LookupRange, MatchType))
- Sheet1 (where we want to display the result).
- Sheet2 (where the data is stored).
Step 1: Set up wer Data on Sheet2
In Sheet2, We have a table with names and scores:
Enter the Data in Sheet 2Step 2: Write the Formula on Sheet1
In Sheet1, let’s say we want to look up the score for "Jordan" from Sheet2.
Go to Sheet1 where we want the result to display.
Click in the cell where we want the result (e.g., cell A1).
Type the formula as follows:
=INDEX(Sheet2!B2:B6, MATCH("Jordan", Sheet2!A2:A6, 0))
- Sheet2!B2:B6 is the range where the scores are stored on Sheet2.
- MATCH("Jordan", Sheet2!A2:A6, 0) searches for "Jordan" in the A column on Sheet2 and returns the row position.
- INDEX then uses this row position to find Jordan’s score in the B column on Sheet2.
Step 3: Press Enter to see the result
In this example, we should get 88, which is Jordan’s score.
INDEX and MATCH Function in Excel Tutorial
Similar Reads
MS Excel Tutorial - Learn Excel Online Free Excel, one of the powerful spreadsheet programs for managing large datasets, performing calculations, and creating visualizations for data analysis. Developed and introduced by Microsoft in 1985, Excel is mostly used in analysis, data entry, accounting, and many more data-driven tasks.Now, if you ar
11 min read
Excel Fundamental
Introduction to MS ExcelMicrosoft Excel, a versatile spreadsheet tool from the Microsoft Office suite that organises data into rows and columns. Whether weâre managing budgets, creating charts, or analysing datasets, Excel helps us handle tasks efficiently. For example, we can list project tasks, calculate totals, and visu
5 min read
Download and Install MS Excel 2024/365 EditionMicrosoft Excel is a tool for data management, reporting, and calculations, widely used by students, professionals, and businesses. The 2024/365 edition offers enhanced features, cloud integration, and improved performance across devices. 1. Downloading Excel 2024/365 on PC or MacExcel is part of Mi
4 min read
Excel SpreadsheetAn Excel spreadsheet, called a workbook, contains one or more worksheets, each a grid of 1,048,576 rows and 16,384 columns for data management. Workbooks organize related data across multiple worksheets in a single file.1. Understanding Excel Workbooks and WorksheetsWorkbook: A single Excel file con
4 min read
Workbooks in Microsoft ExcelA collection of worksheets is referred to as a workbook (spreadsheets). Workbooks are your Excel files. You'll need to create a new workbook every time you start a new project in Excel. There are various ways to begin working with an Excel workbook. You can either start from scratch or use a pre-des
4 min read
Worksheets in ExcelA worksheet is a single spreadsheet in Excel, made up of a grid of rows and columns where data can be entered, calculated, and organized. Each worksheet contains cells where you input text, numbers, or formulas. Worksheets are the main area where work is done in Excel, and multiple worksheets can be
4 min read
Workbooks in Microsoft ExcelA collection of worksheets is referred to as a workbook (spreadsheets). Workbooks are your Excel files. You'll need to create a new workbook every time you start a new project in Excel. There are various ways to begin working with an Excel workbook. You can either start from scratch or use a pre-des
4 min read
Delete All Rows Below Certain Row or Active Cell in ExcelExcel is a tool for storing, analyzing, and creating reports on large datasets. It's widely used by accounting professionals for financial data analysis but is efficient enough for anyone managing large amounts of data. However, dealing with unnecessary rows can clutter our worksheet. Deleting all r
5 min read
Remove Hyperlinks in ExcelHyperlinks in Excel can be useful for navigating to websites, files, or other locations within a workbook, but unwanted hyperlinks can clutter our worksheet. The HYPERLINK function creates a shortcut that opens a document on a server, the internet, or another location in the workbook.Syntax:HYPERLIN
6 min read
How to Use Fractions in ExcelMicrosoft Excel is a powerful tool for managing numbers, but did you know it can also handle fractions just as smoothly as decimals and whole numbers? If you are a newbie working with data where you need to use fractions, then this guide on how to use fractions will guide you on the practical ways t
6 min read
Excel Formatting
Data Formatting in ExcelData formatting in Excel is the key to transforming raw numbers into clear, professional, and actionable insights. From customizing dates and currencies to applying conditional formatting for quick analysis, mastering these techniques saves time and enhances your spreadsheetsâ impact. This guide wil
3 min read
Expand Cells to Fit the Text Automatically in ExcelExcel is a tool for managing tabular data, but entering lengthy text can create display issues. Expanding cells to fit text automatically saves time and keeps spreadsheets clean and professional.1. Why Expand Cells in Excel?Expanding cells in Excel is essential for improving the readability, profess
3 min read
Excel Date and Time FormatsExcel stores dates as serial numbers starting from January 1, 1900 (serial number 1), and times as decimal fractions of a day (e.g., 12:00 PM = 0.5). Proper formatting ensures accurate display and calculations.1. Key ConceptsDates: Stored as sequential numbers (e.g., January 1, 2025 = 45658).Times:
3 min read
Insert a Picture in a Cell in MS ExcelInserting images into Excel cells enhances data visualization for dashboards, reports, and catalogs. By embedding images directly into cells, they move, resize, and sort with our data, ensuring a professional and organized spreadsheet.Step-by-Step Guide to Insert a Picture into a Cell1.1. Inserting
2 min read
How to Unhide and Show Hidden Columns in Excel: Step by Step GuideThere are lots of times when you need to hide certain columns on a temporary basis so you can focus on the specific data. But knowing how to unhide the hidden columns is also important if you want to work on the hidden data again. This complete guide on how to unhide hidden columns in Excel will wal
9 min read
Conditional Formatting in ExcelWe use conditional formatting in Excel to highlight important data based on specific rules. This feature applies colors or styles to cells, helping us spot trends or key values in our spreadsheets effortlessly.We can enhance our data presentation with these practical methods. Letâs explore how to ap
8 min read
Apply Conditional Formatting Based On VLookup in ExcelVLOOKUP is an Excel function to look up data in a table organized vertically. VLOOKUP supports approximate and exact matching and wildcards (* ?) for partial matches.Conditional Formatting Based on VLOOKUP:1. Using the Vlookup formula to compare values in 2 different tables and highlighting those va
3 min read
How to Compare Two Columns and Delete Duplicates in ExcelFacing redundant data in your Excel and don't know how to compare two columns so you can easily de-duplicate Excel? Explore this guide to get the step-by-step instructions to compare two columns and delete duplicate data. Here you will learn multiple ways, like the equal operator, IF() function, and
3 min read
How to Find Duplicate Values in Excel Using VLOOKUPExcel is a great tool for working with data. One of its handy features is the VLOOKUP function, which helps you find matching or duplicate values in your data. In this article, weâll show you how to use VLOOKUP to spot duplicates in a simple way. Youâll learn how to compare two columns in one sheet,
3 min read
Excel Formula & Function
Basic Excel FormulasWe can make Excel work smarter for us with simple formulas that handle our numbers fast! Whether weâre adding up vegetable costs with =SUM(A1:A5) or finding the average with =AVERAGE(B1:B10), these handy tools help us with budgeting and figuring things out. Letâs get started and learn them together!
3 min read
Use of Concatenate in ExcelThe CONCAT function combines multiple text strings or cell values into one string, supporting dynamic data merging.Syntax:=CONCAT(text1, [text2],)Parameters:text1, text2, ...: The text strings, numbers, or cell references to combine (up to 255 arguments).Note: In older Excel versions, use CONCATENAT
5 min read
Percentage in ExcelExcelâs percentage calculations are vital for data analysis, used by 90% of businesses to track metrics like sales growth or expenses. Calculating percentages is straightforward with formulas like (Part/Whole)*100, such as =A1/B1*100, where A1 is the Part and B1 is the Whole. Excel also offers built
8 min read
Excel LEFT, RIGHT, MID, LEN, and FIND FunctionsLEFT Function in ExcelThe LEFT function returns a given text from the left of our text string based on the number of characters specified.Syntax:LEFT(text, [num_chars])Parameters:Text: The text we want to extract from. Num_chars (Optional): The number of characters we want to extract. Default num_ch
5 min read
Excel IF FunctionExcelâs IF function is a versatile formula that performs logical tests, returning one value if a condition is true and another if false. With its clear syntax, itâs ideal for checking criteria and can be combined with other functions for complex formulas.1. Excel IF Statement The IF function evaluat
10 min read
Excel VLOOKUP FunctionThe term VLOOKUP stands for Vertical Lookup. It is designed to search for a specific value in the first column of a table (lookup column) and retrieve corresponding data from a different column in the same row.Syntax of VLOOKUP Formula:VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]
12 min read
Dynamic Array Formulas in ExcelDynamic arrays are resizable arrays that calculate automatically and return value into multiple cells based on a formula entered in a single cell. The new array (multiple cells) that we get is known as spilling and the new array has been placed in neighboring cells. It is not necessary to use Ctrl +
2 min read
COUNTIF Function in Excel - Step by Step TutorialExcelâs COUNTIF function is a tool for counting cells that meet specific criteria, streamlining data analysis for tasks like tracking metrics or filtering results. The function, with its simple syntax COUNTIF(range, criteria), counts cells in a specified range based on conditions like text, numbers,
7 min read
How To Use MATCH Function in Excel (With Examples)Finding the right data in large spreadsheets can often feel like searching for a needle in a haystack. This is where the MATCH function in Excel proves invaluable. The MATCH function helps you locate the position of a specific value within a row or column, making it a cornerstone of efficient data m
6 min read
Excel Data Analysis & Visualization
How to Sort by the Last Name in Excel?When you work on excel you'll probably be assigned a task to sort data alphabetically in ascending or descending order and it is quite an easy task to sort data using the first names in either of the order. It is the easiest task to be done in excel. But what if you are given a task to sort a list o
5 min read
How to Sort Data by Color in Excel?Sorting Data By Color allows us to segregate the data cells of a specific color. There can be many ways to sort by color like sorting by Cell color, sorting by Font color, etc. We can also add multiple levels in sorting data by color. Sorting by Color makes analysis very easy and time-saving. Sort b
3 min read
How to Swap Columns in Excel: 3 Methods ExplainedTo Swap Columns in Excel - Quick StepsDrag and Drop: Select a column, drag it to a new position, and release.Cut and Paste: Cut a column (Ctrl + X) for Windows and (Cmd + X) for Mac, then paste it in the new location using Insert Cut Cells.Copy and Paste: Copy a column, then insert the copied cells
8 min read
Sparklines in ExcelSparklines are miniature charts embedded within a single Excel cell. They visually summarize trends, patterns, or data fluctuations, making them ideal for dashboards and compact reports. Unlike traditional charts, sparklines are not separate objects; they exist inside the cell itself, behaving like
8 min read
Pivot Tables in ExcelPivot Tables in Excel are an efficient tool for summarizing, analyzing and organizing large datasets. They enable us to group, filter and perform calculations (e.g., sums, averages) on data using a flexible, drag-and-drop interface, transforming raw data into actionable insights without complex form
3 min read
How to Sort a Pivot Table in Excel : A Complete GuideSorting a Pivot Table in Excel is a powerful way to organize and analyze data effectively. Whether you want to sort alphabetically, numerically, or apply a custom sort in Excel, mastering this feature allows you to extract meaningful insights quickly. This guide walks you through various Pivot Table
7 min read
Pivot Table Slicers in ExcelInserting a Pivot Table Slicer in Excel means adding a visual filter to a Pivot Table, allowing users to quickly and interactively filter data. Slicers use buttons to display specific subsets of data, improving clarity, ease of use, and overall data exploration across one or more Pivot Tables.How to
6 min read
Data Visualizations in Power ViewData visualization is a technique to represent the data or set of information in charts. Excel gives a tool of Power View where we can explore the data interactively and also we can visualize the data such that data can be presented in Tables, Bar charts, Scatter plots, and Pie charts. This tool can
3 min read
Chart Visualizations in Excel Power ViewPower View is an Excel Visualization tool that allows you to build visually appealing graphs and charts, dashboards for management, and reports that can be issued daily, weekly, or monthly. When we think of Microsoft Excel, we think of various tools such as Formulae, which makes an analyst's job sim
8 min read
Table Visualization in Excel Power ViewFor whatever visualization we decide to make with Power View, we start by generating a Table, which is the default, and then quickly convert the Table to other visualizations. The Table is formatted similarly to any other data table, with columns representing fields and rows representing data values
5 min read
Multiple Visualizations in Excel Power ViewPower View allows for interactive data exploration, visualization, and presentation, promoting easy ad hoc reporting. Power View's flexible visuals enable on-the-fly analysis of large data sets. The data visualizations are dynamic, making it easier to show the data with a single Power View report. M
4 min read
Dynamic Excel Dashboards Using PicklistsDashboards are a report technique that visually presents critical metrics or a data summary to allow for quick and effective business decisions. Excel is capable of handling complex statistical calculations, many of which are built-in as Functions and can be easily displayed on a dashboard. Excel da
3 min read
Advanced Excel
How to Use Solver in Excel?A solver is a mathematical tool present in MS-Excel that is used to perform calculations by working under some constraints/conditions and then calculates the solution for the problem. It works on the objective cell by changing the variable cells any by using sum constraints. Solver is present in MS-
3 min read
Power Query â Source Reference as File Path in CellPower query helps in doing automation in an efficient manner. It allows users to utilize files stored in specific locations and apply routine transformation steps on those files. It allows users to embed file paths and file sources in an Excel cell. The end user can make use of named ranges and Exce
2 min read
How to Create Relational Tables in Excel?Excel directly doesn't provide us ready to use a database, but we can create one using relationships between various tables. This type of relationship helps us identify the interconnections between the table and helps us whenever a large number of datasets are connected in multiple worksheets. We ca
4 min read
How to Import, Edit, Load and Consolidate Data in Excel Power Query?Power Query is an easy and efficient way of solving simple data tasks. Most of our valuable time is frequently consumed by tedious manual procedures like cut and paste, column merging, and filtering. These operations are greatly simplified with the Power Query tool. A further advantage is that, in c
8 min read
Connecting Excel to SQLiteA tiny, quick, self-contained, highly reliable, fully-featured serverless, zero-configuration, transactional SQL database engine is implemented by SQLite, an in-process C language library. The most popular database engine worldwide is SQLite. The public domain status of SQLite's source code allows f
4 min read
Handling Integers in Advanced ExcelA table can be converted into a chart with the help of a power view where one column of data has to be aggregated. Power View can aggregate both integer and decimal numbers. We can also aggregate the data models by other default behavior. Power View provides Power View Fields where the sigma symbol
2 min read
Power Pivot for ExcelPower Pivot serves as an Excel add-on enabling robust data analysis and the creation of advanced data models. This tool facilitates the integration of extensive data from diverse sources, enabling swift information analysis and seamless sharing of insights. Whether working in Excel or Power Pivot, u
10 min read
Excel Power Pivot - Managing Data ModelPower Pivot is something that helps us in relating between two different data sets which are in two different worksheets. We can manage and relate any type of data using Power Pivot. It is used for data analysis and creates many different data models. we can collect large data from different sheets
6 min read
Table and Chart Combinations in Excel Power PivotFor data exploration, visualization, and reporting, Power Pivot offers a variety of Power PivotTable and Power PivotChart combinations. A Power PivotChart is a PivotChart that was made using the Power Pivot window and is based on the Data Model. Despite sharing certain functionality with Excel Pivot
3 min read
Excel Data Visualization
Advanced Excel - Chart DesignThe charts are the visual representation of data in both rows and columns. They are used to analyze the trends and patterns in the datasets. For example, If we want to analyze the sales of different courses for a specific period of time we can easily do this with the help of charts and get the resul
4 min read
How to Create a Graph in Excel: A Step-by-Step Guide for BeginnersAnyone who wants to quickly make observations and represent them graphically should know how to create graphs with Excel. Whether it is the preparation of business analysis papers, academic research documents or financial reports among other things, learning how to make graphs in Excel can significa
8 min read
Formatting Charts in ExcelOne of the major uses of Excel is to create different types of charts for a given data set. Excel provides us with a lot of modification options to perform on these charts to make them more insightful. In this article, we are going to see the most common "Formatting" performed on charts using a suit
3 min read
How to Create a Waterfall Chart in Excel Waterfall charts are a powerful visualization tool used to illustrate the cumulative effect of sequential data points, such as profits, losses, or changes over time. Widely used in financial and performance analysis, these charts provide clear insights into the contributions of individual components
6 min read
Scatter and Bubble Chart Visualization in ExcelScatter Charts and Bubble Charts display many related data in one Chart. In both of these charts, the X - axis displays one numeric field and the Y-axis displays another. It helps to specify the relationship between two values for all the items in the chart easily. In Bubble charts, a third numeric
5 min read
Create a Pie Chart in ExcelA pie chart in Excel is a circular graph divided into slices, where each slice shows a category's proportion of the total. Ideal for displaying percentages like budget breakdowns or survey results, pie charts simplify complex data. Note: Verify our data accuracy to prevent misleading charts.1. Pie C
5 min read
How To Create A Pictograph In Excel?The Pictograph is the record consisting of pictorial symbols. Generally, in mathematics, it is represented by the help of graphs with pictures or icons representing certain quantities or numbers of people, books, etc. It is also known as pictogram, pictogramme, pictorial chart, picture graph, or sim
3 min read
How to make a 3 Axis Graph using Excel?3 Axis Graphs in Excel are the graphs that have three axis. The need for a three-axis arises when the scale of the values is very different. For example, you are given an atom and you want to make a graph between its diameter, melting point, and colloidal nature. If they are plotted on the same scal
7 min read
How To Create a Tornado Chart In Excel?Tornado charts are a special type of Bar Charts. They are used for comparing different types of data using horizontal side-by-side bar graphs. They are arranged in decreasing order with the longest graph placed on top. This makes it look like a 2-D tornado and hence the name. Creating a Tornado Char
2 min read
How to Create Flowchart in Excel: Step-by-Step GuideA Flowchart is a valuable tool for visualizing processes, workflows, or decision-making paths, making it easier to communicate ideas and identify improvements. This article provides a clear, step-by-step guide on how to create a Flowchart in Excel, using its shapes and formatting tools to design cus
6 min read
Excel VBA & Macros
How to Insert and Run VBA Code in Excel?In Excel VBA stands for (Visual Basic for Application Code) where we can automate our task with help of codes and codes that will manipulate(like inserting, creating, or deleting a row, column, or graph) the data in a worksheet or workbook. With the help of VBA, we can also automate the task in exce
2 min read
Variables and Data Types in VBA ExcelIn a computer system, variables and data types are almost used in every program to store and represent data. Similarly, Excel VBA also has variables and data types to store and represent data and its type. In this article, we will learn about VBA variables, their scope, data types, and much more. VB
9 min read
How to Use the VBA Editor in Excel: Quick Guide 2024Unlock the full potential of Microsoft Excel by diving into the world of Visual Basic for Applications (VBA). The VBA Editor in Excel is a powerful tool that allows you to automate tasks, create custom functions, and streamline your workflow like never before. Whether you're looking to boost product
7 min read
VBA Strings in ExcelIn Excel's Visual Basic for Applications(VBA), strings are pivotal in handling and manipulating text-based data. Strings serve as a fundamental data type used to store a sequence of characters, enabling the representation of textual information, numbers, symbols, and more. Understanding how VBA hand
8 min read
VBA Find Function in ExcelIn an Excel sheet subset of cells represents the VBA Range which can be single cells or multiple cells. The find function will help to modify our search within its Range object. A specific value in the given range of cells is to search with the help of the Find function. Excel VBA provides different
5 min read
ActiveX Control in Excel VBAWhen we are automating an excel sheet with VBA at that time when the user has a requirement for a more flexible design then it's better to use ActiveX Controller. In Excel user has to add the ActiveX Controller manually and ActiveX Controls are used as objects in codes. There are the following types
3 min read
Multidimensional Arrays in Excel VBAMultidimensional Arrays are used to store data of similar data types of more than one dimension. A multidimensional array has a dimension up to 60 but usually, we don't use arrays of dimensions more than 3 or 4. Here, we will see how to declare a multidimensional array in many ways and also how to c
2 min read
VBA Error HandlingIn a VBA code, there may be some errors like syntax errors, compilation errors, or runtime errors so we need to handle these errors. Suppose there is a code of 200 lines and the code has an error it's very difficult to find an error in the code of 200 lines so it's better to handle the error where w
10 min read
How to Remove Duplicates From Array Using VBA in Excel?Excel VBA code to remove duplicates from a given range of cells. In the below data set we have given a list of 15 numbers in âColumn Aâ range A1:A15. Need to remove duplicates and place unique numbers in column B. Sample Data: Cells A1:A15 Sample Data Final Output: VBA Code to remove duplicates and
2 min read
Macros In Excel With Examples: Step-by-Step TutorialExcel macros are a powerful tool that can automate repetitive tasks, saving you time and increasing productivity. Whether you're trying to enable Excel macros, record a macro in Excel, or automate specific actions within your spreadsheet, macros are an invaluable feature. In this guide, we will walk
11 min read
Assigning Excel Macro to ObjectsIn Excel, a recorded macro can be assigned to different objects like a shape, graphic, or control note. Instead of running the macro from the required tool in ribbon, we can create these objects to run them easily. They get very handy when multiple macros are there. Individual objects can be created
3 min read
How to Enable Macros in Excel (2025): Step-by-Step GuideHow to Activate Macros in Excel - Quick StepsOpen the Excel workbook.Click Enable Content in the yellow security warning bar.Go to File > Options > Trust Center > Trust Center Settings > Macro Settings.Choose the desired macro setting (e.g., Enable All Macros for trusted files).Save the
9 min read
Power BI & Advance Features in Excel