• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Combining formulas

More information. Details of what you are trying to do. Your request is too vague to respond. We need details. We are not mind readers.
 
Yes - too vague, but ...

Let's assume that A1 contains 1 and I want B1 to add A1 to 10 but if A1 contains 2 I want B1 to multiply A1 by 10.

Formulae for B1:

=A1+10
=A1*10

Combined:

=IF(A1=1,A1+10,IF(A1=2,A1*10,"N/A"))
 
Back
Top