greater les than formula

T

ted

need a formula if less than 100,000.00 multiply by 10% if over 100,000.00
multiply by 20%
 
R

Ragdyer

You didn't mention what you want to do if the value is *equal* to100,000.

With value in A1, assume -equal to- and -greater then- return same results:

=(A1*0.2)-(A1<100000)*(A1*0.1)
 
B

barry houdini

You didn't mention what you want to do if the value is *equal* to100,000.

With value in A1, assume -equal to- and -greater then- return same results:

=(A1*0.2)-(A1<100000)*(A1*0.1)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !





- Show quoted text -

Pehaps a more "traditional" approach.....

=IF(A1<100000,10%*a1,20%*a1)

This assumes that exactly 100000 will be multiplied by 20%
 
R

RagDyeR

At my age, any convoluted mental exercise aids in staving off the
possibility of Alzheimer's.<bg>
--

Regards,

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

You didn't mention what you want to do if the value is *equal* to100,000.

With value in A1, assume -equal to- and -greater then- return same
results:

=(A1*0.2)-(A1<100000)*(A1*0.1)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------"ted"





- Show quoted text -

Pehaps a more "traditional" approach.....

=IF(A1<100000,10%*a1,20%*a1)

This assumes that exactly 100000 will be multiplied by 20%
 

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

IF formula 5
Vlookup data wrong if the small value found are same 4
[newbie] financial accounting (2) 1
tough excel problem! 6
Formula 12
formula help 1
Formula with references 1
if formula 3

Top