0
I have data that looks like this:
Class Date Yr1 Yr2 SeasonalityIndex AUS 9-Aug 1 0 0.060465116 AUS 16-Aug 6 0 0.362790698 AUS 23-Aug 2 1 0.181395349 BVE 9-Aug 2 0 ?
I want to auto-fill the Seasonality Index Column. However, the code for those cells looks like this:
=(D55+E55)/SUM($D$55:$E$67)*$H$1
Where H1
is a constant, but as you see each index is dependent on a SUM of all the values in that CLASS for year 1(Yr1
) and year 2(Yr2
). When Class changes, I want the auto-fill to change to the next section.
Obviously, a normal auto-fill would not work in this case because the cells are locked. Each section is exactly 13 rows if that helps.