Pass a Script Variable into a New Script
Hi,Basically I am trying to use a for loop to imbed multiple scripts into a data table: For( SV = 1, SV <= N Items( CL ), SV++,
DT2 << New Script(
Char(SV),
For( x = 7, x <= N Items( ColLst ), x++,
:Column(Char(ColLst[x])) << Hide (1);
);
For( w = 1, w <= N Items( Lst ), w++,
:Column(Char(CL[SV][w])) << Hide (0);
);
);
);
The problem is when one of these scripts run it doesn...