Calculating YTD for 2004/05 & 2003/04

  • Thread starter Christine Wilso
  • Start date
C

Christine Wilso

I have a column of 2004/05 months A1:A12 April to March, with sale
figures for the months that have occured in column B (ie, April t
September, if a month has not occurred the value #N/A will appear i
column B).Then in column C1:C12 April to March (2003/04), and the sale
figures for each month in column D for the full financial year.

If I want to calculate YTD for 2004/05 I can use the formula:
=SUMIF(b1:b12,"<>#N/A")
But how do I sum for the same time period for 2003/04
 
F

Frank Kabel

Hi
I would change first the formula which causes the #NA error. Also you
may post some example rows of your data. But maybe the following would
also be sufficient:
=SUMIF(b1:b12,"<>#N/A",D1:D12)

--
Regards
Frank Kabel
Frankfurt, Germany

"Christine Wilso" <[email protected]>
schrieb im Newsbeitrag
news:[email protected]...
 
A

Alex Delamain

Frank's formula works well for this.
If you can get rid of the #N/A results then an alternative is

=SUMPRODUCT((D1:D12)*(B1:B12<>0)
 

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