View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Eastland Eastland is offline
external usenet poster
 
Posts: 2
Default Conditional summing across several sheets

I have a summary sheet which I need to summaries the results of various
projects on subsequent sheets. I wish be able to turn projects "on and off"
in the summary. ie:

Project Name Include (Y/N)
Project 1 Y
Project 2 Y
Project 3 N
Project 4 Y

(For simplicity, the Project Name will be the same as its respective sheet
name)

On each project sheet, there is a total revenue row for each year of the
project in columns. However some projects start later than others, and I
require flexibility to move start dates. eg for each project on different
sheets:

Project 1
Year 2006 2007 2008 2009 2010
Revenue 500 200 400 300 500

Project 2
Year 2007 2008 2009 2010 2011
Revenue 500 200 400 300 500

Project 3
Year 2006 2007 2008 2009 2010
Revenue 500 200 400 300 500

Project 4
Year 2008 2009 2010 2011 2012
Revenue 500 200 400 300 500

Then on the Summary sheet, I should get the following (if project 3 is
turned off):
Summary
Year 2006 2007 2008 2009 2010
Revenue 500 700 1100 900 1200

However, I want to be able to turn projects on and off at will.

I have tried a few ways include array functions with little or no sucesss,
can anybody help? Thanks.