Material Thickness Range or Lookup?

materialperson

New Member
Joined
Oct 10, 2017
Messages
3
I am calculating a minimum thickness to use for a steel part and need to have the output in standard thicknesses.

Minimum Thickness (In.) CalculatedActual Thickness of part to be used
0.37940.5
1.67841.75
3.24933.375
4.78544.875

<tbody>
</tbody>

The standard sizes of material used are 0.25, 0.375, 0.5, 0.625, 0.75, 0.875, 1.00, 1.25, 1.375, ....6 inches.

What would be the best formula to use? IF/AND, VLOOKUP, RANGE_LOOKUP, or is there a better one to use?
The calculated thickness cells contain Roundup and IF functions, the length of the numbers is dictated by ASME code/ specific figures involved in the calculation.
Is there a way to have <= and >= in a lookup function?

Thanks
 

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
VLOOKUP.
You may need to control the fractional part with a MROUND.
 
Upvote 0
In the third line, why does 3.2493 require 3.375? Is 3.25 too close or not available?

This rounds up to the next one-eighth, if 3.2493 can take 3.25 as the solution:
=(QUOTIENT(A2,0.125)+1)*0.125

This works for the numbers as given:
=(QUOTIENT(ROUNDUP(A2,1),0.125)+1)*0.125
 
Upvote 0
Hi,
Am I correct in thinking there is a missing value in the material available sequence, between 1 and 1.25 (1.125 missing) based on the difference of 0.125 interval used elsewhere.
If so, you could try

Code:
=CEILING(A2,0.125)

Paul.
 
Upvote 0
Hi,
Am I correct in thinking there is a missing value in the material available sequence, between 1 and 1.25 (1.125 missing) based on the difference of 0.125 interval used elsewhere.
If so, you could try

Code:
=CEILING(A2,0.125)

Paul.

Yes, there is 1.125 material, however, it is more cost efficient to buy the 1.25. 1 1/8" plate is typically a custom order from the mill, whereas 1 1/4 is stock.
 
Upvote 0
Hi,
In that case, post #3 from thisoldman should give you what you need.
Paul
 
Upvote 0

Forum statistics

Threads
1,215,180
Messages
6,123,504
Members
449,101
Latest member
mgro123

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