How do I create a formula to add to a cell value, up to a set maxi

  • Thread starter Thread starter JWmadrid
  • Start date Start date
J

JWmadrid

Hi,

Am having problems creating a formula, although I'm sure its fairly straight
froward!

I need to create a formula in cell b1 that will check the value of cell a1
and if it is less then 10, I need it to add 1 to the value.

Can anyone advise?
 
Hi,

Am having problems creating a formula, although I'm sure its fairly straight
froward!

I need to create a formula in cell b1 that will check the value of cell a1
and if it is less then 10, I need it to add 1 to the value.

Can anyone advise?

The formula you need in B1 would look like this:-

=IF(A1<10,A1+1,A1)

This simple IF function will check if the value is less than ten and
will add one to it if it is. If not it will simply return the value
in A1.

Hope this helps,
Mat
http://teachr.blogspot.com
 
JWmadrid said:
Hi,

Am having problems creating a formula, although I'm sure its fairly straight
froward!

I need to create a formula in cell b1 that will check the value of cell a1
and if it is less then 10, I need it to add 1 to the value.

Can anyone advise?

Or how about this?

=A1+(A1<10)
 

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