Limiting a returned calc to 195

  • Thread starter Thread starter Mr Sandman
  • Start date Start date
M

Mr Sandman

I have a complex formula, i need to limit the result of the calculation to
195 maximum..its probably dead simple..but how do i do it?

cheers


Steve
 
Use this:

=MIN(195,your_complex_formula)

so, if your formula returns a value that is greater than 195, then the
MIN will pick 195.

Hope this helps.

Pete
 
Cheers!


Steve

Pete_UK said:
Use this:

=MIN(195,your_complex_formula)

so, if your formula returns a value that is greater than 195, then the
MIN will pick 195.

Hope this helps.

Pete
 
Back
Top