You can leverage the _n_ option and delete whichever specific record you want to delete. Sample code attached. data test ; input country $ id ; if _n_ =1 then delete ; datalines ; USA, 1 China, 2 Germany, 3 ; run ; proc print data=test ; run ;
... View more