excel 2007

  • Thread starter Thread starter graham black
  • Start date Start date
G

graham black

I need the formulae for

if cell A1 = 2.4 B1 = 3
A2 = 7.6 B2 = 7.6
want formulae for B1,B2 etc, in other word if the value is less than <3, to
= 3, all other values >3 to record as that value

Can you please help?
 
For B1:
=MAX(3,A1)
and copy down column B as far as required.

Or, if you want nothing to show in B1 until there is something in A1:
=IF(A1="","",MAX(3,A1))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top