View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Peo Sjoblom Peo Sjoblom is offline
external usenet poster
 
Posts: 3,268
Default 3d array not working

Excel is poor when it comes to any 3D functions, one way of getting this
done is to put the names of all sheets in a list, so assume you have 8
sheets put the names of those sheets in the same order they occur in the
workbook in let's say H1:H8, then you can use this formula


=SUMPRODUCT(SUMIF(INDIRECT("'"&H1:H8&"'!B484:B510" ),Total!B484,INDIRECT("'"&H1:H8&"'!C484:C510")))


--


Regards,


Peo Sjoblom




"D" wrote in message
...
I need an array that looks across multiple sheets and gives a sum product
based on an account number. I have tried the following formula that
should
work, but returns a #Ref.

The formula I am trying is
=SUMPRODUCT(--('ME:[Budget]Budget'!B484:B510=Total!B484),('ME:[Budget]Budget'!C484:C510))

The account number I need to match is in Total b484, and I need to add the
numbers in c484:c510 that matches this account number asross the sheets ME
through Budget.

Any suggestions?