Formula between to numbers is true multiply

P

pflynn

I am trying to write a formula in which it can figure the following if a cell
is between 91% and 99% then it should multiply by 1.25 if it is not then it
should equal 0
 
R

RagDyer

Test A1 to multiply B1 by 1.25:

=AND(A1>=91%,A1<=99%)*(1.25)*B1
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


I am trying to write a formula in which it can figure the following if a
cell
is between 91% and 99% then it should multiply by 1.25 if it is not then it
should equal 0
 
G

Gord Dibben

pflynn

For "between 91 and 99"

=IF(AND(A10>91%,A10<99%),A10*1.25,0)

For 91 to 99

=IF(AND(A10>=91%,A10<=99%),A10*1.25,0)

Gord Dibben Excel MVP
 
R

Ron Rosenfeld

I am trying to write a formula in which it can figure the following if a cell
is between 91% and 99% then it should multiply by 1.25 if it is not then it
should equal 0


=A1*1.25*AND(A1>0.91,A1<0.99)

or, if you are testing A1 to see whether to multiply some other cell (B1) by
1.25:

=B1*1.25*AND(A1>0.91,A1<0.99)


--ron
 

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