One way:
Restructure your table like so
CAPACITY CABLE SIZE Min Size
- - 1.50
18 1.50 2.50
24 2.50 4.00
31 4.00 6.00
41 6.00 10.00
56 10.00 ??
Assuming the table is in A1:C7, including the headers, use this formula
=IF(ISNA(VLOOKUP(A10,$A$2:$C$7,1,0)),VLOOKUP(A10,$ A$2:$C$7,3),VLOOKUP(A10,$A$2:$C$7,2,0))
Which basically looks for an exact match first. If it's there, it uses your
Cable Size. If not, it uses the Min Size
"Alec Kolundzic" wrote in message
...
Hi,
CABLE SIZE CAPACITY
1.5 18.0
2.5 24
4 31
6 41
10 56
When I use the Lookup Function to find a Cable Size to match the Capacity
Value, say 35, the Lookup Function returns 4, which is the Lookup Vector
that
is less or equal to the Lookup Value. I need the Lookup Vector to be
greater
than or equal to the Lookup Value, ie 6 in this case.
Any Ideas.
Thanks
Alec
|