I am trying to create a permanent data set from another dataset and coding that was created.  this is my code but it is not working.  Each time I still have to run the previous codes to be able to run my own codes.  I am not sure what I am doing wrong.     Libname tume "c/documents and settings/filename";  options fmtsearch=(tume);    data rel_analysis_bin;  set  rel_analysis; run;    data tume.rel_analysis_bin;  set rel_analysis_bin;run;    Not sure what I am doing incorrect   
						
					
					... View more