Sum which starts from Specific Date range

lalro143

New Member
Joined
May 30, 2014
Messages
39
Hi,

I have a data as shown below, Now I need sum starts from month shown in column 1

Jan-09Feb-09Mar-09Apr-09May-09Jun-09Total
MonthAmountAmountAmountAmountAmountAmount
Jan-09123456
Feb-09123456
May-10123456
Mar-09123456
<colgroup><col width="64" style="width: 48pt;" span="8"> <tbody> </tbody>

E.g. Jan-09 includes sum starts from Jan-09 to Jun-09=21
Feb-09 includes sum starts from feb-09 to Jun-09=20
May-09 includes sum starts from may-09 to Jun-09=11

Thank in advance.
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Hi

Why are the numbers in all the rows repeated?
Is it always like that (in that case why repeat them?) ?
 
Upvote 0
Insert a row and column for index numbers which represent the month... If you want, you can include the date too...

Array formula: =SUM(IF($C$2:$H$2>=B4;C4:H4))


Code:
[TABLE="width: 720"]
<tbody>[TR]
[TD][/TD]
[TD][/TD]
[TD]Jan-09[/TD]
[TD]Feb-09[/TD]
[TD]Mar-09[/TD]
[TD]Apr-09[/TD]
[TD]May-09[/TD]
[TD]Jun-09[/TD]
[TD]Total[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]index[/TD]
[TD="align: right"]1[/TD]
[TD="align: right"]2[/TD]
[TD="align: right"]3[/TD]
[TD="align: right"]4[/TD]
[TD="align: right"]5[/TD]
[TD="align: right"]6[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Month[/TD]
[TD][/TD]
[TD]Amount[/TD]
[TD]Amount[/TD]
[TD]Amount[/TD]
[TD]Amount[/TD]
[TD]Amount[/TD]
[TD]Amount[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Jan-09[/TD]
[TD="align: right"]1[/TD]
[TD="align: right"]1[/TD]
[TD="align: right"]2[/TD]
[TD="align: right"]3[/TD]
[TD="align: right"]4[/TD]
[TD="align: right"]5[/TD]
[TD="align: right"]6[/TD]
[TD="align: right"]21[/TD]
[/TR]
[TR]
[TD]Feb-09[/TD]
[TD="align: right"]2[/TD]
[TD="align: right"]1[/TD]
[TD="align: right"]2[/TD]
[TD="align: right"]3[/TD]
[TD="align: right"]4[/TD]
[TD="align: right"]5[/TD]
[TD="align: right"]6[/TD]
[TD="align: right"]20[/TD]
[/TR]
[TR]
[TD]May-10[/TD]
[TD="align: right"]5[/TD]
[TD="align: right"]1[/TD]
[TD="align: right"]2[/TD]
[TD="align: right"]3[/TD]
[TD="align: right"]4[/TD]
[TD="align: right"]5[/TD]
[TD="align: right"]6[/TD]
[TD="align: right"]11[/TD]
[/TR]
[TR]
[TD]Mar-09[/TD]
[TD="align: right"]3[/TD]
[TD="align: right"]1[/TD]
[TD="align: right"]2[/TD]
[TD="align: right"]3[/TD]
[TD="align: right"]4[/TD]
[TD="align: right"]5[/TD]
[TD="align: right"]6[/TD]
[TD="align: right"]18[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0
Hi,

I put these as examples to get more clarity however numbers are different in actual.

The above array formula is not working.

Please suggest
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,399
Members
448,958
Latest member
Hat4Life

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