How do I write a formula in excel where 1 = .05 and 2 = .75 etc.

C

CarolB

How do I write a formula in excel where 1 = .05 and 2 = .75 and 3 = 1.23?
So, if the number entered in the cell is 1 then .05 is muliplied by another
cell.
 
E

Eduardo

Hi,
let's assume you enter 1 in A2, and in B2 you want 0.5 multiplied by cell
A12, so in B2 enter

=if(A2=1,A12*0.05)

to complete your example , if none of the 3 numbers are entered I assume you
want blank

=if(A2=1,A12*0.05,if(A2=2,your cell*0.75,if(A2=3,your cell*1.23,"")))
 
M

Mike H

hi,

Maybe this

=CHOOSE(A1,0.5,0.75,1.23)
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
 

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

Top