|
Re: Excel help please
Do the calculation in a different cell ... then
use If ... then referencing that cell to check is it's lower than 500, if so set your cell to 500, if not use the cell you did the calculation in.
=IF(A1<500,500,A1)
A1 being the cell you did the calculation in
|