I'm having a problem reading this dataset here's my code : data uiui; infile '' dlm=',' dsd firstobs=2; length VAR1 8 rank 8 author $39 book $128 ratings 8 reviews 8 type $10 Price 8 ; format VAR1 8.; format author $39.; format book $128.; format price 8.2; format rank 8.; format ratings 8.2; format reviews 8.; format type $10.; input VAR1 rank book $ author $ ratings reviews type $ price; if _n_ = 18 then book = 'You Are a Badass®'; if _n_ = 92 then author ='Brené Brown'; run; proc print data =uiui; run; proc contents data=uiui; run; if single line observation is fine but I have no idea how to deal with multiple line observation. Appreciate your help thks in advance
... View more