Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

How to count duplicates

Lookin for a formula that will help me count when the value in Column A remains the same in Column C. Example below 3 rebates values remained the same so there is no loss or savings taking place. I need a count on my entire sheet to see how often this is occuring. Any help appreciated!


Column(A) Prior Quater Rebate Column(B) Current Quarter Column(C) Current Quarter Rebate

150.00 2013Q4 175.00

153.00 2013Q4 160.00

150.00 2013Q4 150.00

120.00 2013Q4 155.00

120.00 2013Q4 115.00

150.00 2013Q4 150.00

125.00 2013Q4 125.00

MacBook

Posted on May 8, 2013 3:50 PM

Reply
4 replies

May 8, 2013 7:27 PM in response to Y_M_L

the easiest way (in my opinion) is the sum the values in column A, then sum the values in column C then take the difference.


Add a footer row to your table by selecting the table then click the add footer button in the tool bar (top right):

User uploaded file


In the footer add the formulas as follows:


User uploaded file

A10=SUM(A)

C10=SUM(C)

D10=C10-A10


if you want a more binary answer in D10 you could also enter:

D10=IF((C10-A10) >0, "You saved money", "You did not save any money")


User uploaded file

How to count duplicates

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.