• 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.

Sum ups

ahhhmed

Member
Hello,

Can you help me with this?

I have columns A, B, c, D, E, F

there are numbers in A, B, C, D

When the sum of A:D is between 0 and 20 I want it to appear in column E

When the sum of A:D is larger than 20, I want it to appear in F

Any ideas please?
 
In E2:

=IF(SUM(A2:D2)<=20,SUM(A2:D2),"")

In F2:

=IF(SUM(A2:D2)>20,SUM(A2:D2),"")
 
Back
Top