Trying to extract spec limits from columns
Hi,I am trying to extract column spec limits so I can use in a custom report but I am getting some odd behaviour. Below is a snippet of what I'm doing:Clear Globals();dt = Data Table( "blah" );cols1 = dt << Get Column Names( numeric, continuous );For( jj = 1, jj <= N Items( cols1 ), jj++, spec_x = cols1[jj] << Get Property( "Spec limits" ); Print( Char( jj ) || ": Col is " || Char( cols1[jj] <<...
