average that includes estimates if data not available

G

Guest

I need a formula that totals 12 cells in a row ( the row is monthly sales)
for an annual total.

However if the row doesn't have a full 12 months worth of data I need to
estimate the annual sales by taking an average of the available months and
multiplying them by 12.

(the available months will vary on each row- some may have only the first 3
months or 7 months etc)

Thanks for any help on this.






--
Billy Rogers

Dallas,TX

Currently Using SQL Server 2000, Office 2000 and Office 2003
 
G

Guest

With your months in say B2:M2, then in N2 =SUM(B2:M2). In O2
=COUNTIF(B2:M2,"") to count the number of months with totals, and in P2
=N2/(12-O2)*12
 

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