SUM TO ZERO

Copper Contributor

Dear Users,

 

I have over 6000 data and i want to Match all amount that sums to zero or a set value without the try and error method which takes time and prone to errors, please how can i achieve that using excel or Macros.

thanks. 

11 Replies

@IDRIS_A 

 

What you're asking is not exactly clear, I'm sorry to say. Nevertheless, if what you mean by "Match" is to identify, then you could use the Filter capability. That's available under the Data...toolbar. Or, if you have the newest versions of Excel, there's a FILTER function that could list every row of a database where zero is identified in some field.

 

You would be far more likely to get a more detailed and helpful response if you could post your actual spreadsheet (just making sure it contains no confidential information). A simple verbal description is almost always too confusing or unclear.

@mathetes  Thanks for your response. yes it is to identify, attached shows a random sample which i am sure sum of the highlighted is equal to zero (which is what i want to achieve).

suppose i have 6000 or more cells cells to identify . how best can i go about it. i hope this clarify my questions. 

In attached Sheet Column A has few values are Negative and few are positive,,, and if you are thinking to use SUM,,, then you are not supposed to get ZERO,,, please edit your post and be clear and loud, or show us the expected results in attached sheet,,, honesty I'm clueless !!

@IDRIS_A 

Do you want to find/markup any positive number that has a matching negative number (and any negative number with a positive match)? Try something like this i B2 

=Countif(A:A,-A2)

And copy down.

0 there is no match with opposite sign

1 there is one match with opposite sign

>1 (ambivalent)There is at least one match with opposite sign, but the match might be "used" by another number with the same sign

 

Try some kind of IF statement to sort things out

=if(countif(A:A,-A2)=1,"pair",if(Countif(A:A,-A2)=0,"alone",IF(COUNTIF(A:A,-A2)=Countif(A:A,A2),"Even pairs")))

 

PS

I'm using a non-english excel and i translating in my head, Check the spelling of the formulas

/DS

@IDRIS_A 

 

You're correct that the highlighted cells do sum to zero.

 

That raises at least a number of questions:

  • How did you identify them? (Or was this just a made-up set where you simply changed the signs?)
  • Presumably every number in those highlighted ranges (or the vast majority of them) has a matching number:
    • do you want therefore to identify
      • every pair that sums to zero,
      • every set of four that sums to zero,
      • every set of six that sums to zero,
      • etc
      • Or just the largest set (as you have in your sample)
      • ?

 

You need to become a lot clearer.....

and maybe you could describe the context you're working in here as well, so long as it's not confidential. Maybe there's a different way to meet the objective.

 

@IDRIS_A  as  @mathetes  (and others) have said we need more information to understand exactly what you want/need.  But looking at the number it almost appears that you have a ledger entries and are trying to find values that don't match up and need to be investigated.  So in that case or similar you want to have paired values highlighted (or ignored).  Here is a conditional formatting formula you can use to highlight any value that does not have a corresponding matched but opposite value. Note that it will highlight the FIRST x number of occurrences of that value so if you have 5, 5, -5, 5, 5, -5, -5 it will highlight the FIRST 5 and not the following 5s or -5s because those have 'matches'.  BUT if this is a ledger and you want to know the unmatched line item you may need additional info to distinguish which 5 and -5 actually match up.  AGAIN, we need more info to fully help.  

Here is the Conditional Formatting formula I mentioned and used in the attached sheet to highlight the UNmatched values in RED:

=((COUNTIF(A:A,A1)-COUNTIF(A:A,-A1))>=COUNTIF($A$1:A1,A1))*ISNUMBER(A1)

@IDRIS_A Similar to @mtarler's solution and with the same end-result (I believe), something I picked-up a while ago from https://www.myonlinetraininghub.com/excel-bank-reconciliation-formula 

I've taken the liberty to apply this trick to your data set, using a few helper columns and an intermediate pivot table. It highlights all numbers that cancel each other out. Whether these cancelling numbers really are related is something for you to determine.

@mathetes  thank you very much, i appreciate your responses.

 

  • i identified them manually .
  • they have a matching number, it is a debit and credit , vice versa.
  • every pair that sum to zero or the largest .
  • I'm working on a ledger with a debit and credit. 

thanks for your time.

@mtarler thanks for your response.

 

you are right, you have put the question better than i have asked . it is a ledger entries . if i can get additional line that distinguish them (the ones that should match) , how best should i go about it, thanks. 

thank you very much. @Riny_van_Eekelen , suppose i have a distinguish matching details just like @mtarler' have helped asked, how should i go about it? thanks for your contributions.

@IDRIS_A Add another helper column adding the attribute/description that pairs matching opposites. Build the pivot table using the 2nd helper column and refresh. Made up some attributes to test it. See attached.