data step to read these data into three variables: Invoice, Amount, and Quantity. 12244 $1,499.99 144 32189 $20,000 1 92314 49.28 3 I have written the below code data testrun; input invoice amount quantity; informat amount dollar9.2; cards; 12244 $1,499.99 144 32189 $20,000 1 92314 49.28 3 ; run; There is no errors in log but it is reading all observations.but it is not correct, What is the problem. Thanks for the help
... View more