Adding new columns to a data table
i create a table and try add two aolumns in jsl as follows:
Test = New Table( "Test" );
Test << New Column( "Ident", Character, Continuous, Format( "Best", 8 ), set values( identifiers ) );
Test << New Column( "Value", Numeric, Continuous, Format( "Best", 8 ), set values( values ) );
identifiers - is a list of caharacters
values - a a list of matching numbers.
using the format above, creates only ...
vince_faller