Formula help request

G

gary

I'm trying to develop a formula that will calculate the linear feet of
reinforcing bar I will need when I input the dimensions of a
rectangular concrete slab.

Let's say that I have a slab that is 100' x 50' and I need to have
rebar at 16" on center both ways.

I need a formula to calculate that.

Thanks so much.
GMC
 
M

Marvin P. Winterbottom

put the length in cell A1, the width in cell B1 then the formula is:

=((A1/16)*B1)+((B1/16)*A1)

I think, but try it, or get a second opinion. :)
 
P

pinmaster

Try this:

assumings

A1 = width in feet
B1 = lenght in feet
C1 = spacing in inches

=ROUNDDOWN(A1*12/C1,0)*B1+ROUNDDOWN(B1*12/C1,0)*A1

if I input 100 X 50 I get 7450 feet.

HTH
JG
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top