<?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: compare variables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668219#M200266</link>
    <description>Thank you. I will test and let you know soon.</description>
    <pubDate>Thu, 09 Jul 2020 23:47:52 GMT</pubDate>
    <dc:creator>Emma8</dc:creator>
    <dc:date>2020-07-09T23:47:52Z</dc:date>
    <item>
      <title>compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668024#M200161</link>
      <description>&lt;P&gt;I have a dataset with about 1000 variables. There are many variables that are coded the same but names are different, see an example, those variables have the same information: nHits and fewfe, also those variables have the same values except League contain some missing data: League&amp;nbsp; dfgwe_23.&lt;/P&gt;
&lt;P&gt;How can I find out those variables? So, I wanted to get the list of variables (see below attached)&amp;nbsp; with the same values. In this example fake data, the following variables have the same values except some missing (should ignore missing). Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Want the following list:&lt;/P&gt;
&lt;P&gt;CrAtBat = ab&lt;BR /&gt;CrBB =fkae&lt;BR /&gt;CrHits =vrgsd&lt;BR /&gt;CrHome =dfwef&lt;BR /&gt;CrRbi =vewef&lt;BR /&gt;CrRuns =fff&lt;BR /&gt;Div =wsfde_d&lt;BR /&gt;Division = vdfgew&lt;BR /&gt;League =dfgwe_23&lt;BR /&gt;Position = fgerg&lt;BR /&gt;Salary =vregf&lt;BR /&gt;Team =fre&lt;BR /&gt;YrMajor = rewa&lt;BR /&gt;logSalary = fwef&lt;BR /&gt;nAssts =cefwe&lt;BR /&gt;nAtBat =efqwef&lt;BR /&gt;nBB =qfqewfq&lt;BR /&gt;nError =qfefe&lt;BR /&gt;nHits =fewfe&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 14:08:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668024#M200161</guid>
      <dc:creator>Emma8</dc:creator>
      <dc:date>2020-07-09T14:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668027#M200162</link>
      <description>Did you attach the correct file? It doesn't match the description you gave.</description>
      <pubDate>Thu, 09 Jul 2020 13:13:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668027#M200162</guid>
      <dc:creator>ketpt42</dc:creator>
      <dc:date>2020-07-09T13:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668028#M200163</link>
      <description>&lt;P&gt;What do you mean by "coded the same" exactly?&lt;/P&gt;
&lt;P&gt;i am not that fond of writing a data step to read a file with 1k variables, please share the code you have used to read the file.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 13:15:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668028#M200163</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2020-07-09T13:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668030#M200164</link>
      <description>&lt;P&gt;That looks like a bad joke. There are several columns with identical names, there's no logical order, the header line can't be used for valid SAS names, .....&lt;/P&gt;
&lt;P&gt;If it had been something like&lt;/P&gt;
&lt;PRE&gt;player_name position_1986 salary_1986 at_bats_1986 position_1987 salary_1987 at_bats_1987&lt;/PRE&gt;
&lt;P&gt;and so on, then you could rather easily transpose it into something useful, but this?&lt;/P&gt;
&lt;PRE&gt;"Player's Name","Team at the End of 1986","Times at Bat in 1986","Hits in 1986","Home Runs in 1986","Runs in 1986","RBIs in 1986","Walks in 1986","Years in the Major Leagues","Career Times at Bat","Career Hits","Career Home Runs","Career Runs","Career RBIs","Career Walks","League at the End of 1986","Division at the End of 1986","Position(s) in 1986","Put Outs in 1986","Assists in 1986","Errors in 1986","1987 Salary in $ Thousands","League and Division","Log Salary","Team at the End of 1986","Times at Bat in 1986","Hits in 1986","Walks in 1986","Years in the Major Leagues","Career Times at Bat","Career Hits","Career Home Runs","Career Runs","Career RBIs","Career Walks","League at the End of 1986","Division at the End of 1986","Position(s) in 1986","Assists in 1986","Errors in 1986","1987 Salary in $ Thousands","League and Division","Log Salary"
&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Jul 2020 13:20:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668030#M200164</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-09T13:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668037#M200165</link>
      <description>Sorry, just attached a correct file.</description>
      <pubDate>Thu, 09 Jul 2020 13:44:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668037#M200165</guid>
      <dc:creator>Emma8</dc:creator>
      <dc:date>2020-07-09T13:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668041#M200167</link>
      <description>Sorry, I updated the file again</description>
      <pubDate>Thu, 09 Jul 2020 14:00:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668041#M200167</guid>
      <dc:creator>Emma8</dc:creator>
      <dc:date>2020-07-09T14:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668045#M200168</link>
      <description>&lt;P&gt;To assist you in finding possible duplicate columns, you can do this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import
  out=baseball
  datafile="/folders/myfolders/baseball2.csv"
  dbms=csv
  replace
;
run;

proc transpose data=baseball out=long;
by name;
var _numeric_;
run;

proc sort data=long;
by name col1;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Jul 2020 14:10:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668045#M200168</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-09T14:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668048#M200169</link>
      <description>&lt;P&gt;1) Are those duplicates all only numeric type or also character type?&lt;/P&gt;
&lt;P&gt;2) Can it be that for some observations their values are the same but in other observation,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;those same variables have different value?&lt;/P&gt;
&lt;P&gt;3) Assume you found the duplicate values, what do you want to do with that information?&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; What kind of output you want?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mainly, theoretically, you can define an array, sort it and then compare values easily.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 14:15:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668048#M200169</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-07-09T14:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668057#M200173</link>
      <description>Thank you. &lt;BR /&gt;Numeric variables should compare with numeric and character variables should compare with character—-that is the goal =finding variables with the same values. &lt;BR /&gt;I do not want any output data. I want just the list of variables with the same values. &lt;BR /&gt;For example, if variable1’s values are equal with variable2’s values, then I want&lt;BR /&gt;Variable1 and variable2, etc &lt;BR /&gt;</description>
      <pubDate>Thu, 09 Jul 2020 14:57:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668057#M200173</guid>
      <dc:creator>Emma8</dc:creator>
      <dc:date>2020-07-09T14:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668059#M200175</link>
      <description>This output I would like to :&lt;BR /&gt;&lt;BR /&gt;CrAtBat = ab&lt;BR /&gt;CrBB =fkae&lt;BR /&gt;CrHits =vrgsd&lt;BR /&gt;CrHome =dfwef&lt;BR /&gt;CrRbi =vewef&lt;BR /&gt;CrRuns =fff&lt;BR /&gt;Div =wsfde_d&lt;BR /&gt;Division = vdfgew&lt;BR /&gt;League =dfgwe_23&lt;BR /&gt;Position = fgerg&lt;BR /&gt;Salary =vregf&lt;BR /&gt;Team =fre&lt;BR /&gt;YrMajor = rewa&lt;BR /&gt;logSalary = fwef&lt;BR /&gt;nAssts =cefwe&lt;BR /&gt;nAtBat =efqwef&lt;BR /&gt;nBB =qfqewfq&lt;BR /&gt;nError =qfefe&lt;BR /&gt;nHits =fewfe</description>
      <pubDate>Thu, 09 Jul 2020 15:02:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668059#M200175</guid>
      <dc:creator>Emma8</dc:creator>
      <dc:date>2020-07-09T15:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668067#M200178</link>
      <description>There are no duplicates</description>
      <pubDate>Thu, 09 Jul 2020 15:24:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668067#M200178</guid>
      <dc:creator>Emma8</dc:creator>
      <dc:date>2020-07-09T15:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668068#M200179</link>
      <description>&lt;P&gt;You have not answer the second question:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;2) Can it be that for some observations their values are the same but in other observation,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;those same variables have different value?&amp;nbsp;&lt;/STRONG&gt;(neglecting missing values).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See solution in next link - a very similar question:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Values-the-same/m-p/663839/highlight/false#M198244" target="_self"&gt;https://communities.sas.com/t5/SAS-Programming/Values-the-same/m-p/663839/highlight/false#M198244&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 15:24:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668068#M200179</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-07-09T15:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668102#M200192</link>
      <description>Let me go back. &lt;BR /&gt;I have 2 datasets. &lt;BR /&gt;Dataset 1 has 20000 observations and 300 variables.&lt;BR /&gt;&lt;BR /&gt;Dataset 2 has 10000 observations and 500 variables. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I want to compare those datasets and list out all variables with the same values (one may have more ID (names as suggests the dataset observations) and missing values. I should ignore those additional observations or missing, just compare existing ids variables in both datasets</description>
      <pubDate>Thu, 09 Jul 2020 17:07:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668102#M200192</guid>
      <dc:creator>Emma8</dc:creator>
      <dc:date>2020-07-09T17:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668112#M200196</link>
      <description>&lt;P&gt;That's completely different from your initial question. See Maxim 42.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 17:34:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668112#M200196</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-09T17:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668128#M200217</link>
      <description>&lt;P&gt;What do you mean by &lt;STRONG&gt;"one may have more ID" -&amp;nbsp;&lt;/STRONG&gt;is ID unique at one or both datasets?&lt;/P&gt;
&lt;P&gt;Suppose you have unique ID in table1 bot more than one observations of same id in table 2 - what do you want to compare? and how to treat the many to one matching ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suggest post a sample of each table with upto 10 observations and choose a sample of variables you noticed as same vale and few of different value to serve as test date, then post the output you expect regarding those samples.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 18:15:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668128#M200217</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-07-09T18:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668130#M200218</link>
      <description>In one dataset, there are variables before “=“ and in another dataset, there are variables after “=“ sign:&lt;BR /&gt;CrAtBat = ab&lt;BR /&gt;CrBB =fkae&lt;BR /&gt;CrHits =vrgsd&lt;BR /&gt;CrHome =dfwef&lt;BR /&gt;CrRbi =vewef&lt;BR /&gt;CrRuns =fff&lt;BR /&gt;Div =wsfde_d&lt;BR /&gt;Division = vdfgew&lt;BR /&gt;League =dfgwe_23&lt;BR /&gt;Position = fgerg&lt;BR /&gt;Salary =vregf&lt;BR /&gt;Team =fre&lt;BR /&gt;YrMajor = rewa&lt;BR /&gt;logSalary = fwef&lt;BR /&gt;nAssts =cefwe&lt;BR /&gt;nAtBat =efqwef&lt;BR /&gt;nBB =qfqewfq&lt;BR /&gt;nError =qfefe&lt;BR /&gt;nHits =fewfe</description>
      <pubDate>Thu, 09 Jul 2020 18:24:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668130#M200218</guid>
      <dc:creator>Emma8</dc:creator>
      <dc:date>2020-07-09T18:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668139#M200221</link>
      <description>&lt;P&gt;Your post&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; "&lt;/P&gt;
&lt;PRE&gt;In one dataset, there are variables before “=“ and in another dataset, there are variables after “=“ sign:
CrAtBat = ab
CrBB =fkae
CrHits =vrgsd
........ etc. ....&lt;/PRE&gt;
&lt;P&gt;does not answer my question - "&lt;/P&gt;
&lt;P&gt;What do you mean by&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;"one may have more ID" -&amp;nbsp;&lt;/STRONG&gt;is ID unique at one or both datasets?&lt;/P&gt;
&lt;P&gt;Suppose you have unique ID in table1 but more than one observations of same id in table 2 - what do you want to compare? &lt;STRONG&gt;and how to treat the many to one matching&lt;/STRONG&gt; ?"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Example 1&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;suppose table_1 contains&lt;/U&gt;:&lt;/P&gt;
&lt;P&gt;ID&amp;nbsp; &amp;nbsp; VAR_A&lt;/P&gt;
&lt;P&gt;22&amp;nbsp; &amp;nbsp; 333&lt;/P&gt;
&lt;P&gt;&lt;U&gt;and table_2 contains&lt;/U&gt;:&lt;/P&gt;
&lt;P&gt;ID&amp;nbsp; &amp;nbsp; VAR_X&lt;/P&gt;
&lt;P&gt;22&amp;nbsp; &amp;nbsp;340&lt;/P&gt;
&lt;P&gt;22&amp;nbsp; &amp;nbsp;500&lt;/P&gt;
&lt;P&gt;22&amp;nbsp; &amp;nbsp;333&lt;/P&gt;
&lt;P&gt;22&amp;nbsp; 999&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What output you want?&amp;nbsp; is any other variable or attribute in table_2 that distinguish between&lt;/P&gt;
&lt;P&gt;the observations of same ID? - such as serial number or date or ...&lt;/P&gt;
&lt;P&gt;in order to report:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;STRONG&gt;var_A = var_X when ID=22 and&amp;nbsp; Table_2 date=...&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Example 2:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;suppose table_1 contains&lt;/U&gt;:&lt;/P&gt;
&lt;P&gt;ID&amp;nbsp; &amp;nbsp; VAR_A&lt;/P&gt;
&lt;P&gt;22&amp;nbsp; &amp;nbsp; 333&lt;/P&gt;
&lt;P&gt;25&amp;nbsp; &amp;nbsp; 444&lt;/P&gt;
&lt;P&gt;&lt;U&gt;and table_2 contains&lt;/U&gt;:&lt;/P&gt;
&lt;P&gt;ID&amp;nbsp; &amp;nbsp; VAR_X&lt;/P&gt;
&lt;P&gt;22&amp;nbsp; &amp;nbsp;333&lt;/P&gt;
&lt;P&gt;25&amp;nbsp; &amp;nbsp;777&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would it be correct to say that:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;STRONG&gt;var_A = var_X&amp;nbsp; ???&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 19:32:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668139#M200221</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-07-09T19:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668148#M200227</link>
      <description>Name from both datasets are IDs. &lt;BR /&gt;Var_x is different than var_a, obviously. &lt;BR /&gt;In one dataset, there are additional observations or missing —those cases should be ignored.</description>
      <pubDate>Thu, 09 Jul 2020 19:17:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668148#M200227</guid>
      <dc:creator>Emma8</dc:creator>
      <dc:date>2020-07-09T19:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668160#M200238</link>
      <description>&lt;P&gt;I can accept asking to ignore cases of non equal values, either null or not,&lt;/P&gt;
&lt;P&gt;but:&amp;nbsp; Saying&amp;nbsp;&lt;STRONG&gt;"&lt;SPAN&gt;Var_x is different than var_a, obviously."&lt;/SPAN&gt;&lt;/STRONG&gt;&amp;nbsp; - why?&lt;/P&gt;
&lt;P&gt;in&lt;STRONG&gt; Example_1&lt;/STRONG&gt; there are ID=22 with VAR_A=VAR_X=333&lt;/P&gt;
&lt;P&gt;in &lt;STRONG&gt;Example_2&lt;/STRONG&gt; there are ID=22 with&amp;nbsp;VAR_A=VAR_X=333&amp;nbsp; (same as in example 1)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you asking to report variable names &lt;STRONG&gt;only&lt;/STRONG&gt; if&amp;nbsp; there is at least one pair of observations&lt;/P&gt;
&lt;P&gt;with equal values &lt;STRONG&gt;on all&lt;/STRONG&gt; IDs ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 19:48:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668160#M200238</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-07-09T19:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: compare variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668184#M200243</link>
      <description>&lt;P&gt;So, I made 2 datasets:&lt;BR /&gt;I want to get just list of variables with the same values except missing:&lt;BR /&gt;For example, bothe datasets have the same Id-s (variable "name"), &lt;BR /&gt;CrAtBat = ab&lt;BR /&gt;CrBB =fkae&lt;BR /&gt;CrHits =vrgsd&lt;BR /&gt;CrHome =dfwef&lt;BR /&gt;CrRbi =vewef&lt;BR /&gt;CrRuns =fff&lt;BR /&gt;Div =wsfde_d&lt;BR /&gt;Division = vdfgew&lt;BR /&gt;League =dfgwe_23&lt;BR /&gt;Position = fgerg&lt;BR /&gt;Salary =vregf&lt;BR /&gt;Team =fre&lt;BR /&gt;YrMajor = rewa&lt;BR /&gt;logSalary = fwef&lt;BR /&gt;nAssts =cefwe&lt;BR /&gt;nAtBat =efqwef&lt;BR /&gt;nBB =qfqewfq&lt;BR /&gt;nError =qfefe&lt;BR /&gt;nHits =fewfe&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 20:37:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/compare-variables/m-p/668184#M200243</guid>
      <dc:creator>Emma8</dc:creator>
      <dc:date>2020-07-09T20:37:42Z</dc:date>
    </item>
  </channel>
</rss>

