More as a curiousity, I wanted to check out the new CSV tagset (bundled along with CSVALL and CSVBYLINE). When I ran the Proc Template, I recieved the following error however:
880
881 define event stacked_cell;
882 start:
883 put $delimiter / if !cmp(COLSTART, "1");
884 put '"';
885 finish:
886 put '"';
887 end;
888
889 define event stacked_value;
890 start:
891 put ' ' /if
891! ^cmp(first_stacked_value, '1');
ERROR: Unknown symbol: 'first_stacked_value'
892 trigger put_value;
893 end;
Anyone else experience this? It was only the CSV tagset definition that bombed. The CSVALL and CSVBYLINE both were defined successfully.
I should add that I'm running SAS 9.1 on WinXP.