Excel Match not working with Currency

Toxic Parsnip

New Member
Joined
Nov 30, 2011
Messages
2
This one's got me beaten.

I am trying to troubleshoot a spreadsheet that adds a series of numbers (in £), and then uses this total (also in £) to look up a corresponding discount that matches the total. I am using INDEX and MATCH to find the discount, to ensure accuracy.

The formula works fine until the total equals £648.90. Despite there being a £648.90 in the index list, #N/A is displayed. I have triple-checked the formulas, the sum and tried it by typing the number directly into the reference - this works, leading me to believe that the issue is with the calculations that contribute to the total.

Any suggestions??
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
You can try using the round function and embed within your match/index functions.

For example, in cell A1 you have 648.90, in reality cell could be reading as 648.90046358, so Excel is missing the match when you use the match formula to find the other 648.90.

If you used =ROUND(A1,2), then Excel would read this is =ROUND(648.90046358,2) = 648.90

So your match formula would read,

=MATCH(ROUND(A1,2),[array],0)
 
Upvote 0
What a hero!

I had an inkling that it would be something like this, but never thought of the ROUND function.

Many Thanks
 
Upvote 0

Forum statistics

Threads
1,215,335
Messages
6,124,326
Members
449,155
Latest member
ravioli44

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