ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Maximum value in a cell (https://www.excelbanter.com/excel-discussion-misc-queries/133371-maximum-value-cell.html)

Tareeka

Maximum value in a cell
 
I am trying to set a maximum value in a cell. I have a percentage calculated
in one cell, from time to time the precentage is greater than 100%. Is it
possible to set the formula to only allow a maximum of 100%?

ExcelBanter AI

Answer: Maximum value in a cell
 
Setting a Maximum Value in a Cell Using a Formula in Microsoft Excel
  1. Select the cell where you have the percentage formula.
  2. Click on the "Conditional Formatting" option in the "Home" tab of the Excel ribbon.
  3. Select "New Rule" from the drop-down menu.
  4. In the "New Formatting Rule" dialog box, select "Format only cells that contain" from the "Select a Rule Type" section.
  5. In the "Format only cells with" section, select "Cell Value" from the first drop-down menu, "Greater Than" from the second drop-down menu, and enter "1" in the third field.
  6. Click on the "Format" button to choose the formatting you want to apply to the cell when the condition is met. For example, you can choose to highlight the cell in red.
  7. Click "OK" to close the "New Formatting Rule" dialog box.
  8. Now, whenever the percentage in the cell is greater than 100%, the cell will be highlighted in red, indicating that the value is invalid.
  9. To set a maximum value of 100%, you can modify the formula in the cell to include an IF statement. For example, if your percentage formula is in cell A1, you can modify it to:

    Formula:

    =IF(A11,1,A1

    This formula checks if the percentage in cell A1 is greater than 1 (which is equivalent to 100%). If it is, the formula returns 1 (which is equivalent to 100%). If it's not, the formula returns the original percentage value.

    By using this formula, you can ensure that the maximum value in the cell is always 100%.

[email protected]

Maximum value in a cell
 
You didn't give the formula in the cell currently, so let's say it's:
=B1/C1
If you change this formula to =IF(B1/C11,1,B1/C1) you should get what
you need.

= Marchand =


On Mar 5, 9:22 am, Tareeka wrote:
I am trying to set a maximum value in a cell. I have a percentage calculated
in one cell, from time to time the precentage is greater than 100%. Is it
possible to set the formula to only allow a maximum of 100%?




Ron Coderre

Maximum value in a cell
 
Maybe something like this:

A1: (a number)
B1: (a percent)

This formula multiplies the value in A1 by the lesser of the B1 Percent OR
100%
C1: =A1*MIN(B1,100%)

Does that help?
***********
Regards,
Ron

XL2002, WinXP


"Tareeka" wrote:

I am trying to set a maximum value in a cell. I have a percentage calculated
in one cell, from time to time the precentage is greater than 100%. Is it
possible to set the formula to only allow a maximum of 100%?


Elkar

Maximum value in a cell
 
Use the MIN function.

=MIN(your formula, 100%)

This returns whichever value is lower between "your formula" and 100%.

HTH,
Elkar


"Tareeka" wrote:

I am trying to set a maximum value in a cell. I have a percentage calculated
in one cell, from time to time the precentage is greater than 100%. Is it
possible to set the formula to only allow a maximum of 100%?


Tareeka

Maximum value in a cell
 
THANK YOU, this is it!! You have no idea how long I have been trying to
figure this out!!

" wrote:

You didn't give the formula in the cell currently, so let's say it's:
=B1/C1
If you change this formula to =IF(B1/C11,1,B1/C1) you should get what
you need.

= Marchand =


On Mar 5, 9:22 am, Tareeka wrote:
I am trying to set a maximum value in a cell. I have a percentage calculated
in one cell, from time to time the precentage is greater than 100%. Is it
possible to set the formula to only allow a maximum of 100%?






All times are GMT +1. The time now is 04:37 PM.

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