Business Professionals
Techno-Business Professionals
Power BI | Power Query | Advanced DAX | SQL - Query &
Programming
Microsoft Fabric | Power BI | Power Query | Advanced DAX |
SQL - Query & Programming
Microsoft Power Apps | Microsoft Power Automate
Power BI | Adv. DAX | SQL (Query & Programming) |
VBA | Python | Web Scrapping | API Integration
Power BI | Power Apps | Power Automate |
SQL (Query & Programming)
Power BI | Adv. DAX | Power Apps | Power Automate |
SQL (Query & Programming) | VBA | Python | Web Scrapping | API Integration
Power Apps | Power Automate | SQL | VBA | Python |
Web Scraping | RPA | API Integration
Technology Professionals
Power BI | DAX | SQL | ETL with SSIS | SSAS | VBA | Python
Power BI | SQL | Azure Data Lake | Synapse Analytics |
Data Factory | Databricks | Power Apps | Power Automate |
Azure Analysis Services
Microsoft Fabric | Power BI | SQL | Lakehouse |
Data Factory (Pipelines) | Dataflows Gen2 | KQL | Delta Tables | Power Apps | Power Automate
Power BI | Power Apps | Power Automate | SQL | VBA | Python | API Integration
New
Home | About Us | Contact Us
ExcelGoodies WorldwideUK | USA | Australia | Singapore | Phillipinnes
The syntax for Vlookup is:
VLOOKUP(lookup_value,table_array,col_index_num,range_lookup)
Index:
The Syntax for Index is:
INDEX( array, row_number, [column_number] )
Match:
The Syntax for Match is:
MATCH( value, array, [match_type] )
Problem:
For Example:
Using Vlookup In the above table we can find EmployeeName ; Dept with the help of EmployeeNumber and Dept with the help of EmployeeName, however, we are not able to find EmployeeNumber with EmployeeName and Dept because the Vlookup will work only from the right to its value and not to the left.
Solution:
Use Index first and insert Match function into it.
=Index(Data Range, #,Column number)
“#” indicates the row number to which it is referring to. So use Match function instead of “#”
=Index($A$2$:$A$4,Match(A6,$B$2:$B$6,False),1)
The number which is in the last in the index can help you with EmployeeNumber for 1, EmployeeName for 2 and Dept for 3.
Explore 60+ Functions here and become a Microsoft Excel Power User.
The Syntax for Match is:
MATCH( value, array, [match_type] )
Happy Excelling
Team Excelgoodies
Excel Formulas