Excel formula to return the sum of a range of cells on a separate worksheet

mlm1980

New Member
Joined
Dec 8, 2021
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I'm trying to write a formula that returns the total purchase or sales of a share during a specific period. Each share is on it's own tab within the workbook. The formula I currently have for purchases is:
=SUMIFS(INDIRECT(A7&"!"&B10:B52),INDIRECT(A7&"!"&B10:B52),"<0",INDIRECT(A7&"!"&B10:B52),INDIRECT(A7&"!"&B10:B52),"<="&B2,INDIRECT(A7&"!"&B10:B52),INDIRECT(A7&"!"&B10:B52),">="&B2)
If I remove the Indirect and replace it with the tab reference then the formula works, however I really need this to work dynamically.
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Hi mlm1980,

I'm a bit puzzled by the "<0" part as it looks like the target sheet B10:B52 may be dates. Given that is amended then is this what you want?

Excel Formula:
=SUMIFS(INDIRECT(A7&"!B10:B52"),INDIRECT(A7&"!B10:B52"),"<0",INDIRECT(A7&"!B10:B52"),"<="&B2,INDIRECT(A7&"!B10:B52"),">="&B2)
 
Upvote 0
Solution
Hi mlm1980,

I'm a bit puzzled by the "<0" part as it looks like the target sheet B10:B52 may be dates. Given that is amended then is this what you want?

Excel Formula:
=SUMIFS(INDIRECT(A7&"!B10:B52"),INDIRECT(A7&"!B10:B52"),"<0",INDIRECT(A7&"!B10:B52"),"<="&B2,INDIRECT(A7&"!B10:B52"),">="&B2)
The <0 is to determine whether the amount is less than 0 on this case. Formula worked once I made the cell references (except A7) absolute. Thank you!
 
Upvote 0
The <0 is to determine whether the amount is less than 0 on this case. Formula worked once I made the cell references (except A7) absolute. Thank you!
You're welcome.
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,731
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top