Finding the Location of a Column Name Amongst a List of All the Column Names in a Data File
As the post subject implies, I'm trying to find the loc # of a col identified by name in a given data file. I have the column name. Here is my code: column_names = datatable << Get Column Names();
Write(column_names) works but Write(column_position) outputs an empty matrix []. I don't kno...
Write(column_names);
column_position = loc(column_names, "ARBITRARY COLUMN TITLE/NAME");
Write(column_position);