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

yaelcohen

Member
Hello expert,

I really do not know why I do not find the way to do it with SUMIFS but the only thing I want is - for each line please sum the columns that are =>5

I attached a file with an example

Thanks for any help
 

Attachments

  • Question28.xlsb
    9.1 KB · Views: 7
Hi ,

A simple SUMIF should do :

=SUMIF(A4:D18,">5",A4:D18)

If you wish to do it row by row , enter the following formula in E4 , and copy down :

=SUMIF(A4:D4,">5",A4:D4)

Narayan
 
You can use the SUMIF formula on each line:

=SUMIF(A4:D4,">=5",A4:D4)

When I first tried this, I got some strange totals but then noticed that your actual numbers are not integers. Do you want to think about rounding the numbers either in the source or the total?
 
Hi ,

The problem is not with numbers getting rounded ; the problem is merely with the cell formats which are not displaying any decimals.

Correct the cell formats.

Narayan
 
Back
Top