larger return value for vlookup??

forgotten025

New Member
Joined
Aug 14, 2007
Messages
4
hi... i was wondering if u cud do the opposite of vlookup... wat i mean is how instead of being able to have a table of values and getting the value just smaller than the lookup value, is it possible to get the value just bigger...?

my table has a list (not an array) of cross-sectional areas which is the first column, and i want it to return the dimensions (which includes text - eg "123 x 45"), and my lookup value is a calculated cross-sectional area, but i want the dimensions of the cross-sectional area just bigger than the one i calculated...

i hope that made sense... i don't need vlookup to do the job... anything will do...? cud anyone help?? and get back to me asap...???
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Will something like this work for you (the values would obviously have to be sorted in ascending order):
Excel Workbook
ABCDE
1Lookup tableValue to FindFormula
2105560
320
430
540
650
760
870
980
1090
11100
Sheet3
 
Upvote 0
i tried it but it didn't work... my lookup table does have more than one column... and i want the returned value to come from another column... and for the match function it says the lookup table needs to be an array... mine isn't... thanks for the reply though...
 
Upvote 0
Ok, try this amendment to return the value from column B:
Code:
=INDEX(A:B,MATCH(C2,A:A,1)+1,2)
 
Upvote 0
oh basically wat i want it to do is wat a matchtype of -1 will do... "finds the smallest value that is greater than or equal to lookup_value"....
 
Upvote 0
forgotten025

Welcome to the Mrexcel board!

Could you provide a small set of sample data and expected result? Give us an idea of the layout etc.
 
Upvote 0
omg it worked..!! thank u thank u thank u... u have no idea how long i've tried to get excel to do that... nor how long i've searched for something on the net.... even my lecturer (who set this assignment) doesn't know how to do it... lol... thank u thank u thank u...
 
Upvote 0

Forum statistics

Threads
1,214,601
Messages
6,120,460
Members
448,965
Latest member
grijken

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