Hi,
I can't figure out how to change the format for all numeric columns in my table to be with just 2 dec. via JSL.
The following code is sending errors because it tries to do it for non numeric columns too.
For( i = 2, i <= N Col( dt ), i++,
Column( dt, i ) << Format( "Fixed Dec", 12, 2 )
);
Thanks in advance for any help.