answersLogoWhite

0

What else can I help you with?

Related Questions

What is the formula for volume of concrete footing in trapezoidal?

volume=h/3(A1+A2*Under root A1*A2)


How do you find volume of trapezoid shaped RCC footing?

(a1+a2+sqrt(a1*a2)*h/3= volume of Trapezoid RCC Footing


Trapezoidal footing volume formula?

Right formula is = V = [L X B X d] + h / 3 [ A1 + A2 + ROUTE UNDER A1 A2 ] where , l = length , b = breadth , d = bottom depth , h = D - d , A1 = bottom area , A2= top area (ii)is = V = [L X B X d] + h/6(A1 + A2 + 4 Am) where , h = D - d , A1 = bottom area , A2= top area, Am = Mean of Top and Bottom AreaRoute Under means Square route


What is the formula to find the sum of cells a1 a2 and a3 in excel?

Excel formulas that will find the average of cells A1, A2, and A4 are: =AVERAGE(A1 ,A2, A4) or =AVERAGE(A1:A2, A4)


What is the formula to find the sum of cells A1 A2 A3?

There following two options should work:=sum(A1:A3) or=A1+A2+A3


What is the formula to find the sum of the cells A1 A2 A3?

There following two options should work:=sum(A1:A3) or=A1+A2+A3


How do you write an excel formula to find the gross margin percent if A1 is cost and B1 is retail?

"=((B1-A1)/B1)*100" alternatively if you format the cell as a %, it would just be "=(b1-a1)/b1"


What is the formula to find sum of cells a1 a2 and a3?

There following two options should work:=sum(A1:A3) or=A1+A2+A3


The formula used to multiply cell A1 by cell C1 is?

=A1*C1


What is the formula for joining two data in Excel?

numbers: =A1+A2 text: =A1&A2 or =A1&" "&A2


What formula would you use to add together the cells A1 and B1?

=A1+B1


How to use a formula as criteria in sumif?

A short explanation of the question: Sometimes it is needed to use a formula as criteria instead of a given criteria. For example if you need to find the sum of numbers that are above or below the average in the range. For both COUNTIF and SUMIF formulas, the way to use another formula for criteria is the following (pretext: range of numbers is A1:A15): =countif(A1:A15;">"&average(A1:A15)) or =sumif(A1:A15;">"&average(A1:A15);A1:A15) And for the case that any number should be exactly the same as the average, use the "=" sign after the ">" or "<" sign.