Questions tagged [excel-match]

MATCH is an Excel function for searching for a specified value in a range of cells and it returns the relative position of the matched value in the given range.

Definition:

MATCH is a Microsoft Excel function which searches for the lookup_value from the lookup_array (a range of cells) based on the match_type.

It returns the relative position of the first matched value in the given range, and if no match is found, it returns #N/A.

Syntax:

MATCH(lookup_value, lookup_array, [match_type])

Where:

  • lookup_value (Required) - The value to search and match in the given array.
  • lookup_array (Required) - The array or range of cells to search for the given value.
  • match_type (Optional) - The type of match to perform on the given array. 1 is the default value. There are three possible values:
    • 1 - To find the position of largest value that is less than or equal to the lookup_value. The lookup_array must be sorted in ascending order.
    • 0 - To find the position of the first value that is equal to the lookup_value. The lookup_array can be in any order.
    • -1 - To find the position of the smallest value that is greater than or equal to the lookup_value. The lookup_array must be sorted in descending order.

Learn More:

136 questions
0
votes
0 answers

Repeat identical Excel MATCH, or run once and refer to result?

I'm running the same MATCH function in my spreadsheet numerous (say 100) times. Is it better/worse/no difference to code the function 100 times, into each cell where it's used, rather than do it once in some other cell and then refer to the value of…
0
votes
1 answer

Excel - Match Cells and Show Value of Cell to the Right

I need a function to match the value entered into C1, to Search A:A, but show the value in the cell B:B (to the right). The valve will be seen in D1 (where the function will be entered).
0
votes
1 answer

Excel MATCH and SUMIF Formula Not Matching Wxact Matches

I have a sheet with exact values (verified by =a2=b2 returning true). However, =match(a2,b2,0) returns #N/A for some values, but not all. All cells are formatted the same (I've tried General, Text, Number, etc.), and I have no idea where to go from…
0
votes
1 answer

Excel: Check for partial matches from column against single cell

I have two columns in Excel: Column A Row 1 Apple Row 2 Blueberry Row 3 Strawberry Column B Row 1 App Row 2 Application Row 3 Appendage I would like to use Column B to see if any cells within it exist within the given cell in Column A.…
0
votes
1 answer

Returning multiple column headers values using multiple matching criteria

I am looking for returning multiple column values using multiple matching criteria. Attached is a screenshot of sample sheet, which have my criteria on cell's B1 & C1. So basically, when matching 2 criteria (example "Team1" & "low"), it should…
foxx
  • 11
  • 2
0
votes
2 answers

Check if an excel cell value exists on multiple other sheets - and if so return the name of the sheet it exists on in another column

The first two sheets of my workbook each contain a single column, column A, of approximately 2000 values. In addition to these two sheets I have 42 other sheets that each contain anywhere from 20-1500 values, also in a single column A. For each of…
NCSU201
  • 1
  • 1
0
votes
2 answers

SUMIFS: How to write column names as formula while specifying a range?

There are columns B through Z in the table. I want to sum the column that contains "Mar-15" as the heading, provided column A's value is greater than or equal to "Mar-15". So, if I have the following in Sheet1 - A B C D …
user3164272
  • 565
  • 1
  • 9
  • 20
0
votes
1 answer

MATCH function not working

In Excel I'm using the MATCH function on a column of vehicle registration numbers. The strange thing I am having is that for all but one registration number the MATCH function is working correctly. It doesn't seem to like the cell containing the…
Matthew Brophy
  • 65
  • 1
  • 2
  • 9
0
votes
2 answers

Can't return multiple values of same input using VLOOKUP/INDEX/MATCH

I've tried searching online to solve this problem but cannot seem to find an appropriate solution to this problem I have. I am trying to find all of the MAC addresses connected to each Switch in a network. I am doing this in excel and have the…
rupert
  • 49
  • 1
  • 1
  • 7
0
votes
1 answer

IF, INDEX and MATCH functions to retrieve values with particular keyword

I want to retrieve the value in cell on active sheet if it matches the corresponding email column and has the keyword search. This formula is showing the error #VALUE!: IF(INDEX('DATA 1'!C:C;MATCH(OUTPUT!B13;'DATA 1'!A:A;0)="search");INDEX('DATA…
Mukund Jha
  • 5
  • 1
  • 4
0
votes
1 answer

Using IF, INDEX and MATCH to retrive the value out of the two column that is not blank

I want to use IF, INDEX and MATCH function together to get the output from the another sheet that has two columns (one of them in always blank and so need value from a column which in not blank). The formula I'm using looks like : =IF(ISBLANK('DATA…
Mukund Jha
  • 5
  • 1
  • 4
0
votes
2 answers

Comparing unique strings of Excel data across worksheets

long time reader, first time pos(t)er of questions. I have an Excel 2013 worksheet of about 4,000 unique records (rows) of data. We'll call this the data dump. I've filtered the data dump using any one of about six different data elements (columns).…
0
votes
1 answer

Excel MATCH() function - Zero matches blank

Im using the MATCH() function to decice the row number for the INDEX() function. I am using exact match (0) as parameter. This works fine for the majority of the time, however: Why does it create a match when one cell is blank/empty and the other…
Jakob Busk Sørensen
  • 5,599
  • 7
  • 44
  • 96
0
votes
1 answer

Match word in row, then conditional format other rows based on matched column value

I have a spreadsheet where I want to search for the word "Total" in column headings, then look down the column that matched for "Total", find any row that has a value greater than 1 and highlight the row. The reason for searching for "Total" is that…
JOLT
  • 1
  • 1
0
votes
1 answer

Excel - Automatically return all locations based on 2 criteria

I'm not sure if this has been asked before, but I couldn't find any similar questions. I have a very large spreadsheet (>30,000 rows, >250 columns, all cells with data). The data in the spreadsheet is made up of delivery information. The key…
Clauric
  • 1,826
  • 8
  • 29
  • 48