<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Removing a Variable that is Completely Missing from a Dataset in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551381#M153179</link>
    <description>&lt;P&gt;Thank you . I have added those and many of your important other threads to my personal notes &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 16 Apr 2019 14:17:58 GMT</pubDate>
    <dc:creator>novinosrin</dc:creator>
    <dc:date>2019-04-16T14:17:58Z</dc:date>
    <item>
      <title>Removing a Variable that is Completely Missing from a Dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551069#M153074</link>
      <description>&lt;P&gt;I need help finding a way to drop any variables that contain all missing values.&amp;nbsp; I have attempted to make a macro, but it seems to be getting a bit cumbersome, and I don't know how to finish what I've started.&amp;nbsp; Can someone help me simplify (or even complete) my code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my code below, I have a table TEMP that contains 5 variables.&amp;nbsp; They can be a combination of numeric or character.&amp;nbsp; My macro is looking at the input dataset and determining the number of variables in the table.&amp;nbsp; I then create a table MISSING that creates a corresponding numeric variable for each existing variable in TEMP and store in it the binary 0/1 from the missing() function.&amp;nbsp; I then use PROC MEANS to get the sum of each new variable.&amp;nbsp; In the output table MISSING_SUM, I get the system variable _FREQ_ and the sum of each created binary variable.&amp;nbsp; I figured that if _FREQ_=VARn, then I want to keep that variable and trace it back to the original data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a better thought process here, or is there a way I can finish my macro?&amp;nbsp; In the end, if I were to use PROC PRINT on the final result, it would display TEMP showing F1-F4 instead of F1-F5 since F5 is completely blank or missing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data temp;
	input F1 $ F2 F3 F4 F5;
	cards;
A 1 2 . .
B 3 4 . .
C 5 6 . .
D . 5 1 .
E 4 6 5 .
F 4 . 6 .
G 3 3 6 .
H 5 3 2 .
;
run;


%macro missing_var (dsin=);
	proc sql noprint;
		select nvar into :nvar from sashelp.vtable where libname='WORK' &amp;amp; memname="&amp;amp;dsin.";
		%let nvar=%sysfunc(compress(&amp;amp;nvar.));
		select name into :var1-:var&amp;amp;nvar. from sashelp.vcolumn where libname='WORK' &amp;amp; memname="&amp;amp;dsin.";
	quit;
	data missing (keep=var1-var&amp;amp;nvar.);
		set &amp;amp;dsin.;
		%do i=1 %to &amp;amp;nvar.;
			var&amp;amp;i.=missing(&amp;amp;&amp;amp;var&amp;amp;i.);
		%end;
	run;
	proc means data=missing noprint sum;
		var _all_;
		output out=missing_sum sum=;
	run;
%mend missing_var;

%missing_var (dsin=temp);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 14:49:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551069#M153074</guid>
      <dc:creator>djbateman</dc:creator>
      <dc:date>2019-04-15T14:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a Variable that is Completely Missing from a Dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551075#M153076</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/74"&gt;@djbateman&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Somebody here posted this code.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="yiv0508294297ydpf859f856language-sas"&gt;&lt;CODE class="yiv0508294297ydpf859f856language-sas"&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;data&lt;/SPAN&gt; &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856statement"&gt;class&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
	&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856keyword"&gt;set&lt;/SPAN&gt; sashelp&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856statement"&gt;class&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
   call &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856function"&gt;missing&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;(&lt;/SPAN&gt;height&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;,&lt;/SPAN&gt;sex&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;format&lt;/SPAN&gt; &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
	&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856keyword"&gt;value&lt;/SPAN&gt; &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;$&lt;/SPAN&gt;missfmt    &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856string"&gt;' '&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856string"&gt;"Missing"&lt;/SPAN&gt; other&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856string"&gt;"Not Missing"&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
	&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856keyword"&gt;value&lt;/SPAN&gt; missfmt  &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;.&lt;/SPAN&gt;_&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856operator"&gt;-&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;.&lt;/SPAN&gt;Z &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856string"&gt;"Missing"&lt;/SPAN&gt; other&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856string"&gt;"Not Missing"&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856statement"&gt;ods&lt;/SPAN&gt; &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856statement"&gt;select&lt;/SPAN&gt; none&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;freq&lt;/SPAN&gt; &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856statement"&gt;class&lt;/SPAN&gt; nlevels&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
	&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;format&lt;/SPAN&gt; _numeric_ missfmt&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;.&lt;/SPAN&gt; _character_ &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;$&lt;/SPAN&gt;missfmt&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856statement"&gt;ods&lt;/SPAN&gt; output nlevels&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856operator"&gt;=&lt;/SPAN&gt;nlevels&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856statement"&gt;ods&lt;/SPAN&gt; &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856statement"&gt;select&lt;/SPAN&gt; all&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;data&lt;/SPAN&gt; nlevels&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856function"&gt;length&lt;/SPAN&gt; TableVar &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;$&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856number"&gt;32&lt;/SPAN&gt; NLevels NMissLevels NNonMissLevels &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856number"&gt;8&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;  
   &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856keyword"&gt;set&lt;/SPAN&gt; nlevels&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856keyword"&gt;if&lt;/SPAN&gt; NNonMissLevels &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856operator"&gt;eq&lt;/SPAN&gt; &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856number"&gt;0&lt;/SPAN&gt; &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856keyword"&gt;then&lt;/SPAN&gt; Flag&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856number"&gt;1&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;print&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="yiv0508294297ydpf859f856token yiv0508294297ydpf859f856punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Apr 2019 14:57:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551075#M153076</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-04-15T14:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a Variable that is Completely Missing from a Dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551080#M153080</link>
      <description>&lt;P&gt;That worked great.&amp;nbsp; I was able to modify and simplify in a way that didn't even require the use of a macro.&amp;nbsp; Thank you so much!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data temp;
	input F1 $ F2 F3 F4 F5;
	cards;
A 1 2 . .
B 3 4 . .
C 5 6 . .
D . 5 1 .
E 4 6 5 .
F 4 . 6 .
G 3 3 6 .
H 5 3 2 .
;
run;


proc format;
	value $missfmt    ' '="Missing" other="Not Missing";
	value missfmt  ._-.Z ="Missing" other="Not Missing";
run;

ods select none;
proc freq data=temp nlevels;
	format _numeric_ missfmt. _character_ $missfmt.;
	ods output nlevels=nlevels;
run;
ods select all;

proc sql noprint;
	select tablevar into :dropvars separated by ' ' from nlevels where NNonMissLevels=0;
quit;
data temp;
	set temp (drop=&amp;amp;dropvars.);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:08:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551080#M153080</guid>
      <dc:creator>djbateman</dc:creator>
      <dc:date>2019-04-15T15:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a Variable that is Completely Missing from a Dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551083#M153081</link>
      <description>&lt;P&gt;You are welcome!&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:11:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551083#M153081</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-04-15T15:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a Variable that is Completely Missing from a Dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551377#M153177</link>
      <description>&lt;P&gt;And Don't forget SQL way.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
	input F1 $ F2 F3 F4 F5;
	cards;
A 1 2 . .
B 3 4 . .
C 5 6 . .
D . 5 1 .
E 4 6 5 .
F 4 . 6 .
G 3 3 6 .
H 5 3 2 .
;
run;

/*firstly get variable name*/
proc transpose data=have(obs=0) out=vname;
var _all_;
run;
/*then know if variable is all missing*/
proc sql noprint;
select catx(' ','n(',_name_,') as',_name_) into :vnames separated by ','
from vname;
create table temp as
select &amp;amp;vnames from have;
quit;
proc transpose data=temp out=want;
var _all_;
run;
proc sql noprint;
select _name_ into : missing_variables separated by ' '
from want
where col1=0;
quit;
%put Missing variables are : &amp;amp;missing_variables ;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Apr 2019 14:03:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551377#M153177</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-04-16T14:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a Variable that is Completely Missing from a Dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551378#M153178</link>
      <description>&lt;P&gt;And Don't forget IML way, if you have it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
	input F1 $ F2 F3 F4 F5;
	cards;
A 1 2 . .
B 3 4 . .
C 5 6 . .
D . 5 1 .
E 4 6 5 .
F 4 . 6 .
G 3 3 6 .
H 5 3 2 .
;
run;

proc iml;
use have;
read all var _char_ into char[c=vname_char];
read all var _num_ into num[c=vname_num];
close;
missing_char=vname_char[loc(countn(char,'col')=0)];
missing_num =vname_num [loc(countn(num ,'col')=0)];
missing_var=missing_char//missing_num;
create want var{missing_var};
append;
close;
quit;
proc sql noprint;
select missing_var into : missing_variables separated by ' '
from want;
quit;
%put Missing variables are : &amp;amp;missing_variables ;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Apr 2019 14:06:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551378#M153178</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-04-16T14:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a Variable that is Completely Missing from a Dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551381#M153179</link>
      <description>&lt;P&gt;Thank you . I have added those and many of your important other threads to my personal notes &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 14:17:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-a-Variable-that-is-Completely-Missing-from-a-Dataset/m-p/551381#M153179</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-04-16T14:17:58Z</dc:date>
    </item>
  </channel>
</rss>

