If it's .060 thick it would have to be open which would include
the total surface area meaning inside and out.
Oh, I didn't think of that. So if "0.805 round" refers to the outer
circumference, the outer surface area is simply 0.805*1.235. If A1 is
0.805 and A2 is 1.235, then in Excel: =A1*A2.
For the inner surface area, we need to determine the inner diameter.
That's the outer diameter (0.805/pi) less 2 times the thickness. So
the inner surface area is (0.805/pi + 2*0.060)*pi*1.235, which can be
simplified algebraically to (0.805 + 2*0.060*pi)*1.235. If A3 is
0.060, then in Excel: =(A1+2*A3*PI())*A2.
If B1 and B2 have the formulas for the outer and inner surface areas,
the total is: =B1+B2. Or you simply combine and simplify the
formulas, to wit: =2*(A1+A3*PI())*A2.
Double-check the algebra. I have not tested any of this. The key
formulas are: c = d*pi, and A = c*h, where d = diameter, c =
circumference, h = height, and A = surface area.