Hi Chris,
create a button in the worksheet template with "Script, Run After" set to "Window Create". Place the initialisation code for your fixed value columns there.
E.g. to set row 1 to 10 in column C to a value of 2 the code is
for (ii=1;ii<=10;ii++) {
%H_C[ii]=2;
};