• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Sumif from other worksheet

sachar

Member
Dear All,

With reference to the attach sample file, May I know how to sum the sale of “Hamac” from associated worksheets (from: 01 Jan to 04 Jan) with the help of a single formula on the summary sheet which, I did manually (without a formula).

Please help me.
 

Attachments

  • Gallery_items_Daily Report-sample file.xlsx
    25.9 KB · Views: 7
copy and paste below formula

=SUM(SUMIFS('01 Jan.'!H:H,'01 Jan.'!F:F,"hamac"),SUMIFS('02 Jan.'!H:H,'02 Jan.'!F:F,"hamac"),SUMIFS('02 Jan.'!H:H,'03 Jan.'!F:F,"hamac"),SUMIFS('04 Jan.'!H:H,'04 Jan.'!F:F,"hamac"))
 
Hey Sachar,

You can use 3D reference using INDIRECT function, pFA

Dear All,

With reference to the attach sample file, May I know how to sum the sale of “Hamac” from associated worksheets (from: 01 Jan to 04 Jan) with the help of a single formula on the summary sheet which, I did manually (without a formula).

Please help me.
 

Attachments

  • Gallery_items_Daily Report-sample file.xlsx
    25.9 KB · Views: 11
Dear All,

Thanks to all of you. Mr. Deciog formula is good but, it will not be working if the quantity is more than 1. Mr. Xlstime formula is some complicated for me and, I am trying to understand but, that I need.
 
Some explanation below to help you to understand.

INDIRECT function is helps to convert text (non range) value to range.

Why Sumproduct function? - I have used sumproduct function because sumif function will return 4 values (check your self - just select sumif part formula and press F9 (function key) ) for sum 4 values we need any array formula to sum up values, thats why i have used sumproduct here (you can use sum but with ctrl+shft+enter )






Dear All,

Thanks to all of you. Mr. Deciog formula is good but, it will not be working if the quantity is more than 1. Mr. Xlstime formula is some complicated for me and, I am trying to understand but, that I need.
 
sachar.


What do you mean much more than one, because I testing and is showing the quantity, better explains that I can understand.

I am using Google translator, because I do not speak nor write in English, excuse if the translator does not correct this with English language.

Decio in Brazil - São Paulo
 
Or try this without helper cells formula,

Total sale amount of “Hamac” from Sheets 01 Jan to 04 Jan :

=SUMPRODUCT(SUMIF(INDIRECT("'0"&ROW($1:$4)&" Jan.'!F:F"),"Hamac",INDIRECT("'0"&ROW($1:$4)&" Jan.'!L:L")))

Edit : You can change this number 4 (in red color) to additional new sheet number

Regards
Bosco
 

Attachments

  • Gallery_items_Daily Report1e.xlsx
    25.6 KB · Views: 9
Last edited:
Back
Top