|
Dear Miquel,
Try this tested code using SAS v6.12 on OpenVMS
data products;
infile cards missover;
INPUT test $5. @;
if 0 ne indexc( test , '*') then delete;
else input @1 product $ combin ;
drop test;
cards;
*
* This is comment and is very usefull if you want to understand the contents
of
* this datafile but quite annoying if you want to read this file into SAS
*
1567 2
1568 9
1687 45
;;;;
run;
HTH,
Charles Patridge
Email: Charles_S_Patridge@prodigy.net
|