Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
769 views

SAS error message (FATAL: Code generation error detected during MISSING smear generation)

Does anyone know what this error message means? FATAL: Code generation error detected during MISSING smear generation. It occurs whilst concatenating approx 40 datasets. I believe it may be due to ...
2
votes
2answers
214 views

Flushing PDV variables

Is there a command or a quick way to set all the existing variables in the PDV to missing? I have some code which runs like this: Data example2; var1='A'; Var2='B'; Var3='C'; /* etc*/ output; ...
1
vote
2answers
268 views

SAS: Return to previous observation in SAS Data Step possible?

I asked this question on RunSubmit too, since SAS Q&A community seems a bit scattered. If this is not appreciated, please let me know. Is it possible in a data step to return to a ...
0
votes
2answers
382 views

SAS variable concatenation through data step

I am looking for a way to create a string variable containing certain values of the dataset while going through the data step. Example data set work.test: AddToStringYN Value Y One ...