将单元格值限制在 excel

Limit the cell value in excel

我想知道这是否是一种将单元格限制为一个值的方法。

我正在计算数字,我只想显示最大值 3850,但如果输入值较低,我也希望显示该数字。

示例:

A1 = input number
A2 = A1*1,2%
A3 = A2*12
A4 = <<<<------ This value need to be 3850 and if it is under 3850 i want this as the value instead.
A5 = A4*25%
A6 = SUM

我尝试了不同的解决方案,但我无法让它工作。

你会使用 MIN():

=MIN(A3,3850)

现在允许的最大值是 3850