formula to apply % increase in specific month and calculate month over month change

CAHIGHAM

New Member
Joined
Dec 28, 2017
Messages
11
Hi there,

i am looking for a formula to enter into cells (JAN-DEC) for each row that calculates a % increase and is tied to the effective month column.

Is the only solution to do multiple IF statements for each cell? Any help is appreciated. Thanks.

Core
Increase
Eff. Month
JAN
FEB
MAR
APR
MAY
JUN
JUL
AUG
SEP
OCT
NOV
DEC
FY TOTAL
10000
3%
MAR
10000
10000
10300
10300
10300
10300
10300
10300
10300
10300
10300
10300
123000
10000
5%
SEP
10000
10000
10000
10000
10000
10000
10000
10000
10500
10500
10500
10500
122000

<tbody>
</tbody>
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Under January (D2 i'm guessing type):

Code:
=a2 * (1 + if(c2= "Jan", b2,0))

and fill down.

Then for February to December, type under Feb (I'm assuming E2)

Code:
=d2* (1 + if($c2=E$1,$B2,0))

and fill down and over
 
Last edited:
Upvote 0
Thanks for your quick reply - I am still having trouble and the formula isn't working for me.

It may be how I am calculating the core revenue - in the examples above, 10,000 is a per week number. I have the accounting weeks above the months in my spreadsheet (Jan=5 | Feb=4 | Mar=4) and so on. January is working fine, but Feb through Dec is not. The weeks are row 1, column descriptions are row 2, and data is row 3. Ignore FSC column. I am using a drop down list for column D (Eff. Month) to toggle the month that the increase would take effect. Note: an increase in March should continue at that adjusted amt (3%) for all of the following months. Below is a better example of my spreadsheet - hope you can help. Thanks in advance.

Weekly54454454454452
CoreFSCIncrease %Eff. MonthJanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecemberFY18 TOTAL
60,000 - 3.0%May 300,000 240,000 240,000 300,000 240,000 240,000 300,000 240,000 240,000 300,000 240,000 240,000 3,120,000

<colgroup><col><col><col><col><col span="13"></colgroup><tbody>
</tbody>
 
Upvote 0
Thanks for your quick reply. Jan worked well but Feb onward didn't. It may be how I am calculating the core revenue. Below is a better outline of my worksheet. I really appreciate your help.

Row 1: the working weeks in each month for the accounting period.
Row 2: the column headers
Row 3: data

Ignore column B: FSC

Column C: data entered as a % increase

Column D: I am using a drop down list to be able to toggle the months.

I need the formula to take the weekly amount (60K below) X the weeks in the month. If there is an increase in May of 3%, the months of Jan-Apr should be 60K X # of weeks, and May-Dec would be 60K X 3% X number of weeks.



Weekly54454454454452
CoreFSCIncrease %Eff. MonthJanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecemberFY18 TOTAL
60,000 - 3.0%May 300,000 240,000 240,000 300,000 240,000 240,000 300,000 240,000 240,000 300,000 240,000 240,000 3,120,000

<colgroup><col><col><col><col><col span="13"></colgroup><tbody>
</tbody>
 
Upvote 0
Didn't mention the weeks.

Try For February to December type under Feb (Now I'm assuming F3):
Code:
 = E3/E$1 * (1 + if($D3 = F$2, $C3, 0)) * F$1
 
Last edited:
Upvote 0
Awesome - huge help thanks!

One problem fixed and another created.

When toggling the months in column D, every single month works except for May and June. I have formatted the text in row 2 and column D to be "general" as well as the list I have for all of the months. Any idea why this might be happening? I also checked that calculation is set to automatic.
 
Upvote 0
Usually for me it is a space at the end of one of the values in the list, or in the reference ones in row 2. Try setting effective month to May/(And then June), and in an off cell try to do, "=D3=i2" (and then "=D3=J2" when you pick June) to make sure it is realizing those are the same. If not you'll have to play with your formatting and values to make sure they are the same.
 
Upvote 0

Forum statistics

Threads
1,215,379
Messages
6,124,608
Members
449,174
Latest member
ExcelfromGermany

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