ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   calculate cell value with a minimum to be displayed (https://www.excelbanter.com/excel-discussion-misc-queries/245735-calculate-cell-value-minimum-displayed.html)

Dearoledad

calculate cell value with a minimum to be displayed
 
I need to calculate an "Admin Allocation" of 5% of revenue but the result
cannot be less than $500.00. Example below-
A
1 4500.00
2

Using above cells, A1*0.05 equals 225 in A2 but I since A2 is less than $500
I need to force A2 to be $500.

What is the correct formula for this?

Lars-Åke Aspelin[_2_]

calculate cell value with a minimum to be displayed
 
On Fri, 16 Oct 2009 16:34:01 -0700, Dearoledad
wrote:

I need to calculate an "Admin Allocation" of 5% of revenue but the result
cannot be less than $500.00. Example below-
A
1 4500.00
2

Using above cells, A1*0.05 equals 225 in A2 but I since A2 is less than $500
I need to force A2 to be $500.

What is the correct formula for this?


Try this formula in cell A2:

=MAX(A1*0.05, 500)

Hope this helps / Lars-Åke

Bernd P

calculate cell value with a minimum to be displayed
 
=MAX(500,A1*0.05)

Regards,
Bernd

Ron@Buy

calculate cell value with a minimum to be displayed
 
Try:
=IF(A1*0.05<500,500,A1*0.05)


"Dearoledad" wrote:

I need to calculate an "Admin Allocation" of 5% of revenue but the result
cannot be less than $500.00. Example below-
A
1 4500.00
2

Using above cells, A1*0.05 equals 225 in A2 but I since A2 is less than $500
I need to force A2 to be $500.

What is the correct formula for this?



All times are GMT +1. The time now is 02:59 AM.

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