R
Richard
How would you write the formula for pie squared. My radius is in B2
One way:
=B2*(PI()^2)
But assuming that you really want the area of a circly, then you don't want pi
(not pie) squared.
You want Pi * (Radius squared):
=pi()*(b2^2)
or even
=pi()*b2*b2
Squared means you use the value as a factor twice.
For example if my circle is 8cm from middle of the part to the end
then my area would be 64. Correct? I can't get 64 for the answer.