I am interested in using PROC EXPLODE for a school project, but when the only examples I can find are from older versions of SAS. I have read about people using it in SAS 9, but for me it does not run. I have tried a few examples, such as this one: filename ft15f001 temp; options nodate pageno=1 linesize=80 pagesize=60; proc explode; parmcards; HELLO WORLD ; The error I get is from the line with "HELLO WORLD." I tried changing up the syntax in different ways, but it gives the error: "ERROR: Column 1 of a parameter line can contain only a number, or the characters D, L, P, S, or U." I do not understand the parmcards statement, so any information on that could help me out as well. Thank you in advance for any light that can be shed on this topic.
... View more