Hi Susan,

Here's two ways to solve it

1. With a simple combo of sumif formulas

=SUMIF(D2:D6,"C Wagner",E2:E6)+SUMIF(Sheet3!D11:D18,"C Wagner",Sheet3!
E11:E18)+SUMIF(Sheet2!D13:D23,"C Wagner",Sheet2!E13:E23)

2. With an array formula.

{=SUM((D2:D11="C Wagner")*(E2:E11)+(Sheet3!D11:D20="C Wagner")*(Sheet3!
E11:E20)+(Sheet2!D13:D22="C Wagner")*(Sheet2!E13:E22))}

Make sure you do not copy leaving the curly braces. Paste the formula,
and hit CTRL+SHIFT+ENTER

You must note that the array of ranges have the same number of rows.

Cheers,
Sam Mathai Chacko

On Jul 2, 9:22 pm, Susan <sunni...@gmail.com> wrote:
> Hi Dilip,
> The formula only returned the first sheet, I need it to sum all sheets
> with reference to different ranges for the same criteria , and summing
> different ranges.
>
> I tried SUMPRODUCT(SUM(IF...
> I tried SUM(IF and inserting a + before each proceeding IF
>
> Neither of those worked.
>
> What about using INDEX?  Thou I am not familiar with that formula...
> also, how about VLOOKUP with SUM?
>
> Thanks for your help.  Can you try to fix it again?
>
> Sunnie :-)
>
> On Jun 30, 11:26 pm, Dilip Pandey <dilipan...@gmail.com> wrote:
>
>
>
>
>
>
>
> > Hi Sunnie,
>
> > It can be sorted out using simple SUM function.  Look at the below formula:-
>
> > {=SUM(IF(D2:D6=G3,E2:E6,""),IF(Sheet3!D11:D18=G3,Sheet3!E11:E18,""),IF(Sheet2!D13:D23=G3,Sheet2!E13:E23,""))}
>
> > It is an array formula, hence needs to be entered using key
> > combination Ctrl+Shift+Enter.
>
> > Nesting can be an issue if you use more references here.
>
> > Let me know if this works.
>
> > Thanks,
> > DILIPandey
>
> > On 7/1/11, Susan 1 <sunni...@gmail.com> wrote:
>
> > > Hi,
> > > I cannot figure out Excel won't let me select different ranges from 
> > > multiple
> > > worksheets with same criteria ??
>
> > > =SUMIF(D2:D6,"C Wagner",E2:E6)
>
> > > This is what I'd like it to do:
>
> > > =SUMIF(Sheet1!D2:D6,Sheet3!D11:D18,Sheet2!D13:D23,"C
> > > Wagner",Sheet1!E2:E6+Sheet3!E11:E18+Sheet2!E13:E23)
>
> > > I receive error:  I've entered few too arguments.
> > > I did a search and found out that SUMIF cannot sum across multiple
> > > worksheets like SUM can... why?
>
> > > Can you help me?  Should I use VLOOKUP with SUM?
>
> > > thanks,
> > > Sunnie
>
> > > --
> > > ----------------------------------------------------------------------------------
> > > Some important links for excel users:
> > > 1. Follow us on TWITTER for tips tricks and links :
> > >http://twitter.com/exceldailytip
> > > 2. Join our LinkedIN group @http://www.linkedin.com/groups?gid=1871310
> > > 3. Excel tutorials athttp://www.excel-macros.blogspot.com
> > > 4. Learn VBA Macros athttp://www.quickvba.blogspot.com
> > > 5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com
>
> > > To post to this group, send email to excel-macros@googlegroups.com
>
> > > <><><><><><><><><><><><><><><><><><><><><><>
> > > Like our page on facebook , Just follow below link
> > >http://www.facebook.com/discussexcel
>
> > --
> > Thanks & Regards,
>
> > DILIP KUMAR PANDEY, mvp
> >        MBA,B.Com(Hons),BCA
> > Mobile: +91 9810929744
> > dilipan...@gmail.com
> > dilipan...@yahoo.com
> > New Delhi - 62, India
>
> >  Fall_Session_Data(2).xls
> > 68KViewDownload

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com

<><><><><><><><><><><><><><><><><><><><><><>
Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel

Reply via email to