If the SIZE clause is used on a GRID
program STRING*10 array col (3,3) FOR I = 1,3 . for j = 1,3 . COL(I,j) = FORMAT(((I-1)*5)+j) . end for END FOR grid 'Columns' col /size=6 end program