logical formulas in excel

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

Guest

What I'd like to do is create a set of conditional statements. If the cell
a1="cat", then the number in a2*.25. If the cell a1="dog", then the number
in a2*.75. A1 will always say dog or cat. The then part of the statement
changes based on the text. Any suggestions on how to accomplish this?
Thanks.
 
youve aready cracked it.If cell a1 will only ever have cat or dog all you
need is
+if(A1="Cat",A2*.25,A2*.75).Type this in A3(or any other cell excpet a1 or a2
This test is not case sensitive
 
c.welch said:
What I'd like to do is create a set of conditional statements. If the cell
a1="cat", then the number in a2*.25. If the cell a1="dog", then the number
in a2*.75. A1 will always say dog or cat. The then part of the statement
changes based on the text. Any suggestions on how to accomplish this?
Thanks.

Thanks for your quick response Paul!
 

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


Back
Top