Allowed figures based on set limit

ExcelNewbie2020

Active Member
Joined
Dec 3, 2020
Messages
289
Office Version
  1. 365
Platform
  1. Windows
i have this table below (actual vs allowed).

I need a formula in allowed column based on the following condition

if the value of succeeding month did not reach the set limit (5 or -5). the value of the previous month will carry over.
if the value of succeeding month reach the set limit (5 or -5). the value of the suceeding month will prevail..


Name-List-for-Practice.xlsm
IJKLMNOP
2
3FORMULA HERE
4MonthActualAllowed
5january4545LIMIT5-5
6february4745
7march4845
8april5151
9may5959
10june6059
11july6259
12august6565
13september5050
14october5250
15november5150
16
17
Sheet17
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Hi

You can try the below :

Book1
ABCDEFGH
1
2FORMULA HERE
3MonthActualAllowed
4january4545LIMIT5-5
5february4745
6march4845
7april5151
8may5959
9june6059
10july6259
11august6565
12september5050
13october5250
14november5150
Sheet1
Cell Formulas
RangeFormula
C4C4=B4
C5:C14C5=IF(OR(B5-C4<$H$4,B5-C4>$G$4),B5,C4)
 
Upvote 0
Solution

Forum statistics

Threads
1,215,131
Messages
6,123,223
Members
449,091
Latest member
jeremy_bp001

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