Is it possible to pull in the data that is considered finished and union it onto every looped data stream once it's deemed finished by your condition?
Something like this
My current filter condition to loop the data is when 2014 = end% and if it doesn't it subtracts the increment from 2014
-I ultimately will have more than just A,B adjustments. I could have A,B,C,D , etc. all with varying ending %'s
Results of current iterative macro:
2014 | 2015 | 2016 | Start % | End % | Increment | Adjustment | Scenario |
| .35 | .4 | .4 | .4 | .2 | .05 | A | 1 |
,35 | .4 | .4 | .4 | .15 | .05 | B | 1 |
.3 | .4 | .4 | .4 | .2 | .05 | A | 1 |
.3 | .4 | .4 | .4 | .15 | .05 | B | 1 |
.25 | .4 | .4 | .4 | .2 | .05 | A | 1 |
.25 | .4 | .4 | .4 | .15 | .05 | B | 1 |
.2 | .4 | .4 | .4 | .2 | .05 | A | 1 |
.2 | .4 | .4 | .4 | .15 | .05 | B | 1 |
.15 | .4 | .4 | .4 | .15 | .05 | B | 1 |
Results I'm looking for:
2014 | 2015 | 2016 | Start % | End % | Increment | Adjustment | Scenario |
| .35 | .4 | .4 | .4 | .2 | .05 | A | 1 |
,35 | .4 | .4 | .4 | .15 | .05 | B | 1 |
.3 | .4 | .4 | .4 | .2 | .05 | A | 1 |
.3 | .4 | .4 | .4 | .15 | .05 | B | 1 |
.25 | .4 | .4 | .4 | .2 | .05 | A | 1 |
.25 | .4 | .4 | .4 | .15 | .05 | B | 1 |
.2 | .4 | .4 | .4 | .2 | .05 | A | 1 |
.2 | .4 | .4 | .4 | .15 | .05 | B | 1 |
.2 | .4 | .4 | .4 | .2 | .05 | A | 1 |
.15 | .4 | .4 | .4 | .15 | .05 | B | 1 |