Creating a Formula

  • Thread starter Thread starter Andrea
  • Start date Start date
A

Andrea

I need to put a convertor from Fahrenheit to Celsius. I need to create the
formula to do it, but I'm not sure how.
I have the tempeture on F on cell B5 and I need to put the conversion to C
on C5.
The formula is (F-32)*5/9=C
How I insert that formula in the correct cell?
 
Inside cell C%:

=Round((B2-32)*5/9, 1)

That will round the response to 1 decimal. If you want you can change that
number. It is the one to the right of the ")".

HTH
Thanks,
Roger
 
Hi Andrea,

You can also use the convert function
Put this in C5
=CONVERT(B5,"F","C")

Check out the help file for the full range
of conversions, it's very extensive.

HTH
Martin
 

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

Similar Threads

Temperature (degree) symbol 2
Empty (blank) cell read as zero?? 3
Excel VBA 1
Contents 1
Content 2
Help with formula... 1
FORMULA FOR CELSIUS TO FAHRENHEIT 8
Copy a Formula in a Macro 3

Back
Top