I have a SAS dataset that I need to send to a company, but they are asking for every single record to be surrounded in double-quotes; i.e. A dataset looking like: name,state,date John Smith,NY,2018-07-05 Eli Manning,NJ,2018-07-05 Mookie Betts,MA,2018-07-05 Phil Parker,TX,2018-07-05 ...needs to look like: "John Smith","NY","2018-07-05" "Eli Manning","NJ","2018-07-05" "Mookie Betts","MA,"2018-07-05" "Phil Parker","TX","2018-07-05" Is there an easy way to run the quote() function through every variable? Thanks.
... View more