One range, multiple sheets

Closed
AdioCK - Jul 29, 2009 at 02:12 AM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Jul 29, 2009 at 05:59 AM
Hey guys

I'd like to know how i can add 3 different sheets into one range.

For example, i have the =sumif(range,

How can i fit info from sheet 1 'sheet-ONE'!C5:H16, 'sheet-TWO'!C5:H16, and sheet 3 'sheet-THREE'!C5:H16

into the one Range i have for the sumif function?

i've tried
'sheet-ONE'!C5:H16&'sheet-TWO'!C5:H16&'sheet-THREE'!C5:H16
and +.

1 response

venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 811
Jul 29, 2009 at 05:59 AM
is the crietira for sum if common or variable try somethig like this

=SUMIF(Sheet1!A1:A3,">3")+SUMIF(Sheet2!A1:A3,">3")+SUMIF(Sheet3!A1:A3,">3")

if you can write a macro it will be also ok.
0