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
1 answer

Excel MATCH Statement Nested in INDIRECT Statement?

I have these two functions: =INDIRECT("A"& MATCH(A16,Sheet1!A:A,1)) =INDIRECT(J3&"! PUT FUNCTION 1 HERE ") Function 1 returns the value of cell A17, on Sheet 1. Function 2 should return the value of A17 on Sheet 2 (the second indirect…
Henry St
  • 33
  • 4
0
votes
1 answer

Search sheet for multiple values at a single time

I've an Excel sheet with almost 30,000 rows and I have a list to be searched within the Excel of size 100 values. I don't want to search manually each time. How can I perform a search of all these 100 values at a single go?
0
votes
1 answer

Excel MATCH function partially working

I'm using the Excel MATCH function, and it works if the lookup_value is an unmodified number, but it does not always work if the lookup_value is a calculated number. To be more specific: My spreadsheet can ask the user whether or not she would…
arlederman
  • 15
  • 1
  • 1
  • 5
0
votes
1 answer

Conditional Formatting for many different values

I've been trying to create a conditional format formula that looks in a column and finds a series of names and colors them the same color. I want to get this done with one formula instead of a bunch of formulae. I have tried INDIRECT, VLOOKUP and…
0
votes
3 answers

Filter a spreadsheet with a list of ID's

I have a large spreadsheet with a ton of information (10,000+ records). One of the columns is an ID column. I also have a list of around 500 ID's that need to be excluded from this dataset. Basically I want filter through the BIG spreadsheet and…
Roeland
  • 3,698
  • 7
  • 46
  • 62
0
votes
1 answer

Using an Indirect within a Minimum

I have a script =MATCH(H2,INDIRECT("'SALES'!A"&R2&":CC"&R2),0) to produce the column number of the minimum value on the SALES sheet. The issue is that when I change the minimum value it produces a completely wrong number and reads the wrong…
0
votes
2 answers

Using MATCH() function with an unsorted list

I'm having an issue with a spreadsheet formula that uses the MATCH() function. =IFERROR(IF(LENB(Y2461)<> 0, "Complete", IF(LENB(Q2461)<> 0, IF(Q2461-$Y$1
0
votes
1 answer

Excel MATCH function not working with automatic data update

I have an excel function that looks like this: =MATCH($A3,Table[Column],FALSE)+1 What this function does is return me the row number of the matching row where table[column] == $A3 and this is working fine in a static file. However as soon as I…
KoU_warch
  • 2,160
  • 1
  • 25
  • 46
-1
votes
1 answer

Create New Unique ID Based on Linked Values in Two Columns - Excel

I have tried using the formulas you previously posted to resolve my issue, but I am showing a 3 in column C for some of the Unique IDs instead of a 2. My goal is to assign a Unique ID whenever a record in column A is linked to a record in column B…
Tommy
  • 3
  • 3
-1
votes
1 answer

Search returned value in another table excel

So I have this issue, I have two tables one is employees, and another one is the projects. Table Employees: Year Name Type Amount 2018 Kevin Salary 5000 2018 Kevin Insurance 200 2018 Alex Salary 3000 2018 Alex …
Kev
  • 3
  • 4
-1
votes
2 answers

Getting Excel row data to mysql column in php

I know how I can get data from excel to mysql using php. Please have look at the excel chart below: I want to input data in below mysql table. From the excel file column D,E,F,G data will insert as row in mysql table & column A,B,C & H will input…
-1
votes
1 answer

Excel match with a list as criteria

I want to perform a match in excel using, several criteria (text, string) in the form of a list. For example: Match(A:A & B:B, C:C & D:D, 0) (With the array parenthesis of course) I have try this, but it doesn´t work. I also looked in the internet,…
-1
votes
1 answer

Excel - Match Values in 2 Columns

Consider the Columns A and C, where the values in C can be found in A. How do I get a match where the following conditions are met? If a value of C is found in A, it will print a 1. If no matches are found, it will print out 0 in column B.
czmhdk
  • 29
  • 2
-1
votes
1 answer

Find break even point and then calculate the difference of adjacent cells, both of which are dynamic?

I have a stream of cashflows going all across row 37, where each column represents a month (ie. B37 is cashflow in january, C37 february, etc.), and I want to have a function that finds what month these cashflows go from negative to positive, and…
Justin
  • 55
  • 2
  • 7
-1
votes
2 answers

If Equal to Value in Other Range, Then Highlight Value in Range

I have two columns of data - a reference column All Names and another list Performer of names that meet a certain criterion (the criterion is not relevant here). All Names contains 2,029 names, Performer contains ~120 names. They are not matched up…
Mus
  • 7,290
  • 24
  • 86
  • 130
1 2 3
9
10