add and subract in one sum

G

Guest

I have a worksheet that has balances for delivery and usage. they are all on
one line and a want a monthly use at the end. so 10 delivered mon 1 used tues
1 wed 3 del thurs 1 used friday. Each day being a different column. how would
my sum look please?
 
V

VBA Noob

Can you post an example of the data.

I think you should be able to use a sumif statement if you want to sum
all the delivery's on a Mon for example.

e.g =SUMIF(A:A,"Mon",B:B)
 
R

RagDyeR

Just enter negative numbers in the columns when they are used.

Say that:
A2 Mon = 10
B2 Tues = -1
C2 Wed = -1
D2 Thurs = 3
E2 Fri = -1
F2 etc...

And your formula is:
=SUM(A2:AE2)
For the entire month.

--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================

I have a worksheet that has balances for delivery and usage. they are all on
one line and a want a monthly use at the end. so 10 delivered mon 1 used
tues
1 wed 3 del thurs 1 used friday. Each day being a different column. how
would
my sum look please?
 

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