data liquidity;
infile '/home/loeeqsas/83.csv' dlm = ',' termstr=crlf dsd;
input qid ddate date9. price vol af;
adjprice=price*af;
srtn=adjprice/lag1(adjprice)-1;
dvol=adjprice*vol;
proc print data = liquidity;
run;
Output puts the price data in the vol column and shows price as blank. Is this to do with the date format? Thank you.