Help writing an Excel Formula

B

bella0711

I'm trying to write a formula in Excel that will:

if d10 is less than 250 = $2.00. If d10 is equal to 250= $2.00. If d10
is greater than 250 then, divide d10 by 250 and multipy that number by
$2.00.

sounds easy but I'm not that familiar with writing formulas...
Thanks!!
 
R

Ron P

bella0711 said:
I'm trying to write a formula in Excel that will:

if d10 is less than 250 = $2.00. If d10 is equal to 250= $2.00. If d10
is greater than 250 then, divide d10 by 250 and multipy that number by
$2.00.

sounds easy but I'm not that familiar with writing formulas...
Thanks!!

Will this do?
Put this =IF(D10="","",IF(D10<=250,2,D10/250*2)) in a cell other than d10
formatted as currency.
 
A

Amanda

The formula would be
=IF(D10<=250,2,(D10/250)*2)
Hope that helps!
Amanda in Illinois
 
R

Richard Buttrey

I'm trying to write a formula in Excel that will:

if d10 is less than 250 = $2.00. If d10 is equal to 250= $2.00. If d10
is greater than 250 then, divide d10 by 250 and multipy that number by
$2.00.

sounds easy but I'm not that familiar with writing formulas...
Thanks!!

=if(D10<=250,2,D10/250*2)

Rgds

__
Richard Buttrey
Grappenhall, Cheshire, UK
__________________________
 
L

Lowkey

The simplest formula would be:

=IF(D10>250,((D10/250)*2),2)
and format the cell you put the formula in as currency.
 

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