Gary Bamberger
Unfortunately it is not. The DISKCOLUMNS command affects all data arrays the same.
What I have done in the past is to create the array so that certain data elements are left empty:
\ C() = Array 1
\ C(I) = Trial #
\ C(I+1) = Data 1
\ C(I+2) = Data 2
\ C(I+3) = Data 3
\ C(I+4) = Data 4
\ C(I+5) = Data 5
\ C(I+6) = Data 6
\ D() = Array 2
\ D(J) = Trial #
\ D(J+1) = Data 1
\ D(J+2) = Data 2
\ D(J+3) = Data 3
\ D(J+4) = Data 4
\ D(J+5) = Not Used
\ D(J+6) = Not Used
I hope that this helps.
Gary