Subtracting two Subtotals in the same column

G

Guest

I'm using an excel macros to subtotal my sales and purchases. All my sales
transcation are listed on top of my purchases and there are several blank
lines to separate the two. How do I subtract the grand total of my sales
from the grand total of purchases if both grand totals are on the same
column? Since the amount of sales and purchases transactions varies, i don't
know the exact cell that either one of the grand total will be in. I do know
that they will be in column "D".

Is there a formula that can find the grand total of the purchases and sales
and subtract them?
 
D

Dave Peterson

Have you thought about using positive numbers for one (sales or purchases) and
negative numbers for the other (purchases or sales)?

Then you could just sum the column to get the net amount.

Or put an indicator in another column (Say column E) and use that:

=sumif(e:e,"Sales",d:d) - sumif(e:e,"Purchase",d:d)

or
=sumif(e:e,"Sales Total",d:d) - sumif(e:e,"Purchases Total",d:d)

Or whatever you have to indicate the grand totals.
 
G

Guest

aHey Dave-

Thanks for your help. All of my data is being pulled from my company's
oracle database so sales and purchases are not distinguished by a positive or
a negative.

Is there any way that when i subtotal the sales , I can label that subtotal
as "Sales"
and the purchases as "Purchases" so that the formula can distinguish which
are the "Purchases" and which are the "Sales"? I thank you in advance.
 
D

Dave Peterson

I think I'd use a separate field (a different column) that indicated what the
value represented.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top