Please keep is simple.

C

clum111

Hi All,

I haven't used Excel for a few years and I've been asked to create a Cost
Records Spreadsheet. I've got all my column headings and totals along the
top.

The last 3 rows at bottom, I've named them as "Paid For", "To Be Paid" and
"Totals" for adding up each column. Is there a way when I enter an amount
into a cell, it tells the the bottom rows if it's a paid for or to be paid?

Please keep is simple.

Regards :)
 
R

Roger Govier

Hi

You would need an additional column with an entry in it if the line has been
paid.
Insert a new column at say B, and put an x against entries that have been
paid.

The total for Paid items in column C, will be
=SUMIF($B$2:$B$100,"x",C$2:C$100)

Note the 2 and the 100 will need to be altered to represent the first row of
values, and the row number above where your first sub-total is located.

Copy across through the other columns you want to total.

For Unpaid items, you can either use your Total minus the value as
calculated above, or use
=SUMIF($B$2:$B$100,"",C$2:C$100)
 

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