• 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 of same name

delta

Member
i want to same item is opposite every item then sum. like item A3 match D3 item then sum other wise value of A3 is shwon in C3 i attcha the sample file i want to result F3 cell
how it is made
 

Attachments

Hi ,

See this file.

The formula Marcus posted is available in Excel 2007 and later versions ; if not , you need to use an array formula. Both are given in the attached file.

Narayan
 

Attachments

Hi delta,

like item A3 match D3 item then sum other wise value of A3

If I understood the problem correctly, this can be achieved with a simple if,
=IF(A3=D3,B3+E3,B3)

Correct me If I am wrong.

Regards,
 
=IF(A3=D3,B3+E3,B3)

Somendra - That is fine if the data stays in the same place. Most datasets are more dynamic than that and if any of the data points move then above will not produce the desired result.

Take care

Smallman
 
Back
Top