I'd like to get the column index of a column with a specified long name or short name. I.e. I want to search a sheet for the column what has long name "capacity" and return "E" or "5" if the long name of column E is "capacity". Any input on Labtalk commands that will let me do this?
Range syntax would be a useful way to get plenty of info from a specified Origin object, like following
range ra=[Book1]Sheet2!col("capacity");
ra.name$=; //short name
ra.index=; //index
rA.lname$=; //long name
rA.nRows=; //number of rows in the column
rA.unit$=; //text in Units label row
//etc.
Range syntax would be a useful way to get plenty of info from a specified Origin object, like following
range ra=[Book1]Sheet2!col("capacity");
ra.name$=; //short name
ra.index=; //index
rA.lname$=; //long name
rA.nRows=; //number of rows in the column
rA.unit$=; //text in Units label row
//etc.