Thread: formula
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
RonaldF RonaldF is offline
external usenet poster
 
Posts: 16
Default formula

Something like this:

'amount under 20.000 x 0,3
=MIN(20000;A1)*0,3

and

'amount above 20.000 x 0,2
=(MAX(20000;A1)-20000)*0,2

--
Ronald Ferdinandus
http://www.ro-pay.nl


"Roy E" wrote:

I would like to * A1 by .03 up to the first $20,000 but not over. Even if the
amount is under or over $20,000 in one box and the amount that is over
$20,000 * .02 in a other box
Thanks Roy