Conditional Formula help required

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am looking for a single formula for excel 2003 to do the following:
If A1=R then A10=400/0.99, If A2=H then A10=400/0.9 if neither is true then
A10=400.
 
The formula goes in the cell where the result is to appear, A10 in your case.
=if(A1="R",400/0.99,if(A2="H",400/0.9,400))
 
=IF(A1="R",400/0.99,IF(A"="H",400/0.9,400))

and put that in A10

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)
 
I am looking for a single formula for excel 2003 to do the following:
If A1=R then A10=400/0.99, If A2=H then A10=400/0.9 if neither is true
then A10=400.


One way is to put this in A10
=400/IF(A1="R",0.99,IF(A1="H",0.9,1))
 

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

Back
Top