Is there a chance to set the header of the data file columns as label (not as key)?
I have data files with 5 or 6 columns and a header above each column. Now I would like to use the columnheader with the set label
command. Is this possible?
Is there a chance to set the header of the data file columns as label (not as key)?
I have data files with 5 or 6 columns and a header above each column. Now I would like to use the columnheader with the set label
command. Is this possible?
On a unixoid system, the
head
command helps:MS win does not have the
head
command, you might use'findstr /B \"#\"'
instead, if the header line begins with a "#". Or use cygwin to get a full GNU + POSIX environment under Windows.The
word()
function should split your header string at the same positions ascolumnhead()
. Unless of course you have a different separator (not space or tab):