Set a limit on cell value, so that it does not exceed a set figure

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I ensure that a value displayed in a cell does not exceed a set figure?
 
If this is a cell into which people input data check out <data><validation>
if this is from a formula
=min(Value,formula)
 
I need to ensure that the percentage sum of two cells does not exceed a set
figure
 
If the set figure is 100, try any of these:

=MIN(A1*B1,100)
=MIN(A1+B1,100)
=MIN(SUM(A1:A25,100)
--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


lennysc14 said:
I need to ensure that the percentage sum of two cells does not exceed a set
figure
figure?
 

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

Back
Top