Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Analysis tools which use ReportData as output data type like FFT, Average Multiple Curves, Discrete Frequency, etc will leaveĀ outputĀ column short name as default and use long name as identifier only.

For example, in after running FFT:

Code Block
titleBefore
fft1 ix:=[Book1]Sheet1!B;// Before 2015, column short name will be renamed as Amp
range rAmp1=%(rReportData1.getlayer()$)col(Amp);
Code Block
titleNow
fft1 ix:=[Book1]Sheet1!B;// Now, you need to use other method such as column long name
range rAmp1=%(rReportData1.getlayer()$)col("Amplitude");

...