Hello. Below is my code. I do not have errors. However, I am having trouble with my output. How do I make all the deer names in one column and the gift in the other column? Also, how do I not display commas in my output statement? Thank you. Data RudolphXmasList; input DeerName $ Gift $ @@; output; datalines; Dasher, hay bale, Dancer, stocking cap, Prancer, candy canes, Vixen, red dress, Comet, astrology book, Cupid, bow and arrows, Donner, lump of coal, Blitzen, snow shoes ; proc print data = RudolphXmasList; run;
... View more