Index/Match rounding up

searnold56

New Member
Joined
Mar 8, 2013
Messages
7
Hello -

I used index and match logic to lookup a SKU from a db of skus with 5 separate criteria. The only numbered criteria is rounding a whole number up to the next nearest whole number. I tried a -1 (see below, pulling off of C4) which works like a champ unless my quantity is 1, then it pulls nothing.

=INDEX('SKU DB'!A2:H1201,MATCH(1,('SKU DB'!B:B=B4)*('SKU DB'!A:A=(C4-1))*('SKU DB'!C:C=D4)*('SKU DB'!D:D=E4)*('SKU DB'!I:I=A4),0),7)

Any suggestions?

Thank you!
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
What is your intent? Does column C house quantities?

Thank you for the reply!

Yes, C4 has a drop down of whole numbers 1 through 50 and column A on the SKU DB worksheet has 24 sets of 1-50.

ProductService tier# of TBAgreement TermPaid monthly, Paid in fullSKU
BUSilver612 monthsPaid in fullBU-VCC-SS-7TB-12M

<tbody>
</tbody>


If the above criteria is selected (where the 6 resides is c4), the SKU matches in every spot except it's rounding up from one whole number to the next whole number. I need it to return an exact match.
 
Last edited:
Upvote 0
Still unclear...

=INDEX('SKU DB'!A2:H1201,MATCH(1,('SKU DB'!B:B=B4)*('SKU DB'!A:A=(C4-1))*('SKU DB'!C:C=D4)*('SKU DB'!D:D=E4)*('SKU DB'!I:I=A4),0),7)

better:

=INDEX('SKU DB'!G2:G1201,MATCH(1,('SKU DB'!B2:B1201=B4)*('SKU DB'!A2:A1201=C4)*('SKU DB'!C2:C1201=D4)*('SKU DB'!D2:D1201=E4)*('SKU DB'!I2:I1201=A4),0))

wouldn't round up anything. Rather, it returns a result from column G if all of the conditions hold.
 
Upvote 0

Forum statistics

Threads
1,214,945
Messages
6,122,395
Members
449,081
Latest member
JAMES KECULAH

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