ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Grater than or less than formula (https://www.excelbanter.com/excel-programming/303684-grater-than-less-than-formula.html)

Jeff[_34_]

Grater than or less than formula
 
I am trying to bring back a value to cell L31

if L30 is <$355 then put $30.00 in cell L31
if L30 is or equal to $355 then multiply by 0.085

thank you for any help.

using office 2000





Don Guillett[_4_]

Grater than or less than formula
 
this
=L10+IF(L10=355,L10*0.085,0)
or better
=L10*IF(L10=355,1.085,0)
--
Don Guillett
SalesAid Software

"Jeff" wrote in message
...
I am trying to bring back a value to cell L31

if L30 is <$355 then put $30.00 in cell L31
if L30 is or equal to $355 then multiply by 0.085

thank you for any help.

using office 2000







Don Guillett[_4_]

Grater than or less than formula
 
change
=L10*IF(L10=355,1.085,0)

to
=L10*IF(L10=355,1.085,1)

--
Don Guillett
SalesAid Software

"Don Guillett" wrote in message
...
this
=L10+IF(L10=355,L10*0.085,0)
or better
=L10*IF(L10=355,1.085,0)
--
Don Guillett
SalesAid Software

"Jeff" wrote in message
...
I am trying to bring back a value to cell L31

if L30 is <$355 then put $30.00 in cell L31
if L30 is or equal to $355 then multiply by 0.085

thank you for any help.

using office 2000









Jeff[_34_]

Grater than or less than formula
 
how do i get the first part to work along with it,
if L30 is <$355 then put $30.00 in cell L31


"Don Guillett" wrote in message
...
this
=L10+IF(L10=355,L10*0.085,0)
or better
=L10*IF(L10=355,1.085,0)
--
Don Guillett
SalesAid Software

"Jeff" wrote in message
...
I am trying to bring back a value to cell L31

if L30 is <$355 then put $30.00 in cell L31
if L30 is or equal to $355 then multiply by 0.085

thank you for any help.

using office 2000









kcc[_2_]

Grater than or less than formula
 
=if(L30<355,30,L30*.085)

"Jeff" wrote in message
...
how do i get the first part to work along with it,
if L30 is <$355 then put $30.00 in cell L31


"Don Guillett" wrote in message
...
this
=L10+IF(L10=355,L10*0.085,0)
or better
=L10*IF(L10=355,1.085,0)
--
Don Guillett
SalesAid Software

"Jeff" wrote in message
...
I am trying to bring back a value to cell L31

if L30 is <$355 then put $30.00 in cell L31
if L30 is or equal to $355 then multiply by 0.085

thank you for any help.

using office 2000












All times are GMT +1. The time now is 10:49 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com