formula up to a maximum of 100, no greater than

  • Thread starter Thread starter John5646
  • Start date Start date
J

John5646

My spreadsheet uses formulae to work out value, but our fees, or A3, is
capped at 900. So, with a formula of
A3=A1*A2
where the values are
10*100, I need A3 to be 900
but if the value is
8*100, I need A3 to be 800
 
=IF(OR(A1="",A2=""),"",MIN(900,A1*A2))

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 
Back
Top