I want to sum values in column K given a range of dates from column B. Using the Sum, indirect, offset and match functions.
B C D E F G H I J K
[TABLE="width: 685"]
<colgroup><col><col><col span="2"><col><col span="3"><col><col></colgroup><tbody>[TR]
[TD]7/15/2006 [/TD]
[TD]135.8[/TD]
[TD]0.002[/TD]
[TD]1.209[/TD]
[TD]0.016[/TD]
[TD]1.4[/TD]
[TD]1.3[/TD]
[TD]26.55[/TD]
[TD]9.2[/TD]
[TD]-7.9[/TD]
[/TR]
[TR]
[TD]7/16/2006[/TD]
[TD]147.1[/TD]
[TD]0.080[/TD]
[TD]1.136[/TD]
[TD]0.014[/TD]
[TD]2.3[/TD]
[TD]2.1[/TD]
[TD]37.19[/TD]
[TD]9.9[/TD]
[TD]106.4[/TD]
[/TR]
[TR]
[TD]7/17/2006[/TD]
[TD]143.8[/TD]
[TD]-0.023[/TD]
[TD]1.202[/TD]
[TD]0.011[/TD]
[TD]2.2[/TD]
[TD]2.1[/TD]
[TD]33.87[/TD]
[TD]9.9[/TD]
[TD]-33.3[/TD]
[/TR]
[TR]
[TD]7/18/2006[/TD]
[TD]138.2[/TD]
[TD]-0.040[/TD]
[TD]0.955[/TD]
[TD]0.008[/TD]
[TD]2.7[/TD]
[TD]2.6[/TD]
[TD]28.18[/TD]
[TD]10.0[/TD]
[TD]-56.9[/TD]
[/TR]
[TR]
[TD]7/19/2006[/TD]
[TD]154.2[/TD]
[TD]0.110[/TD]
[TD]1.256[/TD]
[TD]0.005[/TD]
[TD]3.7[/TD]
[TD]3.6[/TD]
[TD]44.23[/TD]
[TD]10.0[/TD]
[TD]160.5[/TD]
[/TR]
[TR]
[TD]7/20/2006[/TD]
[TD]134.2[/TD]
[TD]-0.139[/TD]
[TD]1.911[/TD]
[TD]0.003[/TD]
[TD]2.0[/TD]
[TD]1.9[/TD]
[TD]24.28[/TD]
[TD]9.8[/TD]
[TD]-199.5[/TD]
[/TR]
</tbody>[/TABLE]
So I have a date range, in this case 7/15/2006 and ending at 7/20/2006 and I want to use those parameters to reference and sum the corresponding values in column K as shown. This part of the spreadsheet begins at row 51 and ends at row 56. The formula needs to be variable, I've tried doing it as such... =SUM(INDIRECT("K"&MATCH(C37,'Ch 5 & 6'!B1:B56,0)&":K"&MATCH(C38,'Ch 5 & 6'!B1:B56,0)))
But it's giving me a value of 0 and the practice worksheet tells me I need to embed Match within indirect within offset within sum. Any help would be greatly appreciated. Thank you!
B C D E F G H I J K
[TABLE="width: 685"]
<colgroup><col><col><col span="2"><col><col span="3"><col><col></colgroup><tbody>[TR]
[TD]7/15/2006 [/TD]
[TD]135.8[/TD]
[TD]0.002[/TD]
[TD]1.209[/TD]
[TD]0.016[/TD]
[TD]1.4[/TD]
[TD]1.3[/TD]
[TD]26.55[/TD]
[TD]9.2[/TD]
[TD]-7.9[/TD]
[/TR]
[TR]
[TD]7/16/2006[/TD]
[TD]147.1[/TD]
[TD]0.080[/TD]
[TD]1.136[/TD]
[TD]0.014[/TD]
[TD]2.3[/TD]
[TD]2.1[/TD]
[TD]37.19[/TD]
[TD]9.9[/TD]
[TD]106.4[/TD]
[/TR]
[TR]
[TD]7/17/2006[/TD]
[TD]143.8[/TD]
[TD]-0.023[/TD]
[TD]1.202[/TD]
[TD]0.011[/TD]
[TD]2.2[/TD]
[TD]2.1[/TD]
[TD]33.87[/TD]
[TD]9.9[/TD]
[TD]-33.3[/TD]
[/TR]
[TR]
[TD]7/18/2006[/TD]
[TD]138.2[/TD]
[TD]-0.040[/TD]
[TD]0.955[/TD]
[TD]0.008[/TD]
[TD]2.7[/TD]
[TD]2.6[/TD]
[TD]28.18[/TD]
[TD]10.0[/TD]
[TD]-56.9[/TD]
[/TR]
[TR]
[TD]7/19/2006[/TD]
[TD]154.2[/TD]
[TD]0.110[/TD]
[TD]1.256[/TD]
[TD]0.005[/TD]
[TD]3.7[/TD]
[TD]3.6[/TD]
[TD]44.23[/TD]
[TD]10.0[/TD]
[TD]160.5[/TD]
[/TR]
[TR]
[TD]7/20/2006[/TD]
[TD]134.2[/TD]
[TD]-0.139[/TD]
[TD]1.911[/TD]
[TD]0.003[/TD]
[TD]2.0[/TD]
[TD]1.9[/TD]
[TD]24.28[/TD]
[TD]9.8[/TD]
[TD]-199.5[/TD]
[/TR]
</tbody>[/TABLE]
So I have a date range, in this case 7/15/2006 and ending at 7/20/2006 and I want to use those parameters to reference and sum the corresponding values in column K as shown. This part of the spreadsheet begins at row 51 and ends at row 56. The formula needs to be variable, I've tried doing it as such... =SUM(INDIRECT("K"&MATCH(C37,'Ch 5 & 6'!B1:B56,0)&":K"&MATCH(C38,'Ch 5 & 6'!B1:B56,0)))
But it's giving me a value of 0 and the practice worksheet tells me I need to embed Match within indirect within offset within sum. Any help would be greatly appreciated. Thank you!