What is the formula for converting farenheit to celsius?

  • Thread starter Thread starter Guest
  • Start date Start date
use the CONVERT excel worksheet function as follows:
=CONVERT(A1,"F","C")

where A1 holds the temperature

You need to enable the Analysis ToolPak addin.

The formula is:
=(A1-32)*5/9


Mangesh
 
SWPT4330,

farenheit to celsius is:-
Tc = (5/9)*(Tf-32); Tf = temperature in degrees Fahrenheit

celsius to farenheit is :-
Tf = (9/5)*Tc+32; Tc = temperature in degrees Celsius

HTH

Pank
 
Back
Top