One way ..
Set-up a table in Sheet1,
cols A and B, from row1 down:
0.25 0.098
0.375 0.123
0.5 0.168
etc
Then you could use something like this
in say, Sheet2's F2:
=C2*D2*VLOOKUP(B2,Sheet1!$A:$B,2,0)*E2
Copy F2 down
Perhaps better with an error trap to return blanks: "" instead of #NAs, try
instead in Sheet2's F2:
=IF(ISNA(MATCH(B2,Sheet1!$A:$A,0)),"",C2*D2*VLOOKUP(B2,Sheet1!$A:$B,2,0)*E2)
--
Rgds
Max
xl 97
---
GMT+8, 1° 22' N 103° 45' E
xdemechanik <at>yahoo<dot>com
----
"Jeff" <Jeff@discussions.microsoft.com> wrote in message
news:1545C772-3163-499E-A09E-22B939D1B714@microsoft.com...
> If B2 is exactly 0.250 then C2*D2*.098*E2, and If B2 is exactly 0.375 then
> C2*D2*.123*E2, and If B2 is exactly 0.500 then C2*D2*.168*E2, ect.
> This fomula would be in F2.
> Basicaly it's for calculating weight. B2 is thickness, C2 is width, D2 is
> length, E2 is number of pieces, all this is multipied by a conversion
factor
> depending on thickness.
> Thanks
> Jeff
Bookmarks