excel formula help Please

  • Thread starter Thread starter David franklin
  • Start date Start date
D

David franklin

I need some help Please. not sure how to write a formula? Description of what
I want.:

if cell is equal to 48 or less then I want to add 3 to the cell but if cell
is greater the 49 then I want to add 6 to cell Can some one help Please. I am
new with excel and am not sure how to do this.. Thanks
 
Sorry if question is not clear. if cell is 49" 0r more then I want to add 6"
to the cell. if the cell is 48" or less then I want to add 3" to cell
 
You cannot change a cell in Excel with a formula in the cell. You can
however change another cell with a formula based on a cell. For example, if
the value in cell A1 is a 6, put a 3 in cell B1. But you cannot change cell
A1 to be 3 if cell A1 is a 6. That is called a circular reference. It's like
saying: I have a formula, and if the formula produces the answer 6, replace
the formula with the value 3. The formula is gone.

Tyro
 
Sorry if question is not clear. if cell is 48" or less I want to add 3" to
the cell examples (48+3=51) (25 + 3 =28) if cell is 49 or greater the I want
to add 6" to cell (50 +6 =56) ... in one cell (c11) I will put the number in
a different cell (D15) I want the answer
 
David

If your data is in Column A Starting with A1, in B1 put
"=IF(A1>=49,A1+6,A1+3)"
without quotes.

Mike Rogers
 
Thank You

Mike Rogers said:
David

If your data is in Column A Starting with A1, in B1 put
"=IF(A1>=49,A1+6,A1+3)"
without quotes.

Mike Rogers
 

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

Similar Threads

Excel Need Countifs Formula Help 0
Excel formula 5
newbe with a formula question. 5
need formula help 6
EXCEL FORMULA 2
Formula quandary? 3
Please help on formula that will not work (If-And formula) 3
Conditional formating 1

Back
Top