ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   If And Calcuation (https://www.excelbanter.com/excel-worksheet-functions/161130-if-calcuation.html)

Kimbo[_2_]

If And Calcuation
 
Hi All,

It's been a while, good to be using excel again.

I need a formula to calculate cell A1

Cell A1 is to be used to enter an amount by a user

Then I need to multiply cell A1 by 3% if less than or equal to 45000. But,
if the cell amount goes over 45000 I need then to calculate up to 45000 by 3%
and the amount over 45000 by 5%, and have the result in one cell

0-45000 multiply by 3%
45001 multiply by 5%

Thank you all in advance
--
Lost in office 2007

Bob Phillips

If And Calcuation
 
=A1*3%+(MAX(A1-45000,0))*2%

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Kimbo" wrote in message
...
Hi All,

It's been a while, good to be using excel again.

I need a formula to calculate cell A1

Cell A1 is to be used to enter an amount by a user

Then I need to multiply cell A1 by 3% if less than or equal to 45000. But,
if the cell amount goes over 45000 I need then to calculate up to 45000 by
3%
and the amount over 45000 by 5%, and have the result in one cell

0-45000 multiply by 3%
45001 multiply by 5%

Thank you all in advance
--
Lost in office 2007




Alan

If And Calcuation
 
=IF(A1<=45000,A1*1.03,IF(A145000,A1*1.05))
Regards,
Alan.
"Kimbo" wrote in message
...
Hi All,

It's been a while, good to be using excel again.

I need a formula to calculate cell A1

Cell A1 is to be used to enter an amount by a user

Then I need to multiply cell A1 by 3% if less than or equal to 45000. But,
if the cell amount goes over 45000 I need then to calculate up to 45000 by
3%
and the amount over 45000 by 5%, and have the result in one cell

0-45000 multiply by 3%
45001 multiply by 5%

Thank you all in advance
--
Lost in office 2007



Kimbo[_2_]

If And Calcuation
 
Bob, your a star!!!! Thanks a bunch
--
Lost in office 2007


"Bob Phillips" wrote:

=A1*3%+(MAX(A1-45000,0))*2%

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Kimbo" wrote in message
...
Hi All,

It's been a while, good to be using excel again.

I need a formula to calculate cell A1

Cell A1 is to be used to enter an amount by a user

Then I need to multiply cell A1 by 3% if less than or equal to 45000. But,
if the cell amount goes over 45000 I need then to calculate up to 45000 by
3%
and the amount over 45000 by 5%, and have the result in one cell

0-45000 multiply by 3%
45001 multiply by 5%

Thank you all in advance
--
Lost in office 2007





Teethless mama

If And Calcuation
 
=MIN(45000,A1)*3%+MAX(A1-45000,0)*5%


"Kimbo" wrote:

Hi All,

It's been a while, good to be using excel again.

I need a formula to calculate cell A1

Cell A1 is to be used to enter an amount by a user

Then I need to multiply cell A1 by 3% if less than or equal to 45000. But,
if the cell amount goes over 45000 I need then to calculate up to 45000 by 3%
and the amount over 45000 by 5%, and have the result in one cell

0-45000 multiply by 3%
45001 multiply by 5%

Thank you all in advance
--
Lost in office 2007



All times are GMT +1. The time now is 03:17 PM.

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