Maybe my question is not very clear. I am attaching a simple example
Depending on the value in the column HashFreq, I need to select data from either column Idyn_200_65 or Idyn_400_65.
Once I can get that data , I can use a formula to calculate further.
Names Default To Here( 1 );
dt1 = Open( "TestDataJunk.jmp" );
HashFreqval = Column( "HashFreq" );
IDyn = Column( "IDynatTsense__"||HashFreqval[]|| "__65" );
dt1 << New Column( "NewVal", Numeric, Continuous, Formula( IDyn[] ));
Thanks for your help!