Problem with Match function when lookup data is in another sheet

cnatac2000

New Member
Joined
Sep 15, 2020
Messages
9
Office Version
  1. 2010
Platform
  1. Windows
I want to create a match formula where the lookup data is in another sheet.

For example, I want to look or match the amount of 4,407.72 in Sheet called "Look", row 7

the look up value in the tab called "Data" starting from row B1 to B3

4,407.72
4,507.00​
4,508.00​

My formula array on c9 is not working. It won't even let me complete the formula array. From the data, it should see a row with a value of 4407.72, since the integer value of it is 4,407.72.

=MATCH(C7,data!INT(B1:B3),0)

Any help would be much appreciated.
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Looks like you misplaced the INT function. I placed it first in the MATCH function and it worked for me.

Excel Formula:
=MATCH(INT(C7),Data!B1:B3,0)
 
Upvote 0
Maybe
Excel Formula:
=MATCH(C7,INT(data!B1:B3),0)
 
Upvote 0

Forum statistics

Threads
1,215,208
Messages
6,123,642
Members
449,111
Latest member
ghennedy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top