Hi,
You define Spread52WeeksEvently as $F$9:$BE$9 but you recall it at $H$3:$BG$3, so it is offsetted 2 columns, so you cannot just directly call this name.
You should index() to do this.
Use this formula in cell H3 :
and copy this formula to right
For cell H3 : COLUMNS($H1:H1)=1, so INDEX(Spread52WeeksEvently,0,1) is INDEX($F$9:$BE$9,0,1) = F9
For cell H4 : COLUMNS($H1:I1)=2, so INDEX(Spread52WeeksEvently,0,2) is INDEX($F$9:$BE$9,0,2) = G9
For cell H5 : COLUMNS($H1:J1)=3, so INDEX(Spread52WeeksEvently,0,3) is INDEX($F$9:$BE$9,0,3) = H9
You got the idea.
Regards
Bookmarks