Hi
I need the coding for the following;
/*task*/
data r;
input info $ 1 - 50;
cards;
101 pencils 42
102 parker pens 21
103 apple ipod touch n shuffle 09
104 dell studio laptop 02
run;
I need to find the coding for the above.
want the colums to be named prid priname and prqty.
prid and prqty ( should be numerical when u check the data file)
priname should be (character)
I can get the code if i manipulate the data.
data o;
input prid info $4-30 pqrty;
cards;
101 pencils 42
102 parker pens 21
103 apple ipod touch n shuffle 09
104 dell studio laptop 02
run;
can u help get the code
I need the coding for the following;
/*task*/
data r;
input info $ 1 - 50;
cards;
101 pencils 42
102 parker pens 21
103 apple ipod touch n shuffle 09
104 dell studio laptop 02
run;
I need to find the coding for the above.
want the colums to be named prid priname and prqty.
prid and prqty ( should be numerical when u check the data file)
priname should be (character)
I can get the code if i manipulate the data.
data o;
input prid info $4-30 pqrty;
cards;
101 pencils 42
102 parker pens 21
103 apple ipod touch n shuffle 09
104 dell studio laptop 02
run;
can u help get the code