Cap percentage at specific amount

Generic formula 

=MIN(A1*percent,1000)

Related formulas 

Force negative numbers to zero

Explanation

To calculate a percentage based value capped at a specific amount, you can use the MIN function.

In the example shown, the formula in D6 is:

=MIN(C6*10%,1000)

How this formula works

This formula takes advantage of the fact that the MIN function works fine with small sets of data, even two values. 

Inside MIN, the value in C6 is multiplied by10%, and the result appears at the first number given to MIN. The number 1000 is supplied as the second value.

The MIN function then returns the smaller of the two values.

Replacement for IF

This formula is a clever way to avoid a more complicated IF formula. You can use the MIN and MAX functions to replace IF when you want to return the smaller or greater of two values.

Cap percentage at specific amount

Generic formula 

=MIN(A1*percent,1000)

Related formulas 

Force negative numbers to zero

Explanation

To calculate a percentage based value capped at a specific amount, you can use the MIN function.

In the example shown, the formula in D6 is:

=MIN(C6*10%,1000)

How this formula works

This formula takes advantage of the fact that the MIN function works fine with small sets of data, even two values. 

Inside MIN, the value in C6 is multiplied by10%, and the result appears at the first number given to MIN. The number 1000 is supplied as the second value.

The MIN function then returns the smaller of the two values.

Replacement for IF

This formula is a clever way to avoid a more complicated IF formula. You can use the MIN and MAX functions to replace IF when you want to return the smaller or greater of two values.