<?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: Need help with proc compare in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144249#M38355</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like you are running into the display versus storage issue.&amp;nbsp; You may see in your datasets:&lt;/P&gt;&lt;P&gt;3039.07&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3039.07&lt;/P&gt;&lt;P&gt;Which look the same.&amp;nbsp; However the data is really (an example):&lt;/P&gt;&lt;P&gt;3039.0700000000000000001&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3039.07&lt;/P&gt;&lt;P&gt;Hence a fractional difference.&amp;nbsp; I have come up against this several times and it can happen in several different ways, most notable if the base programmer uses SAS functions to create a calculated variable, and I use SQL.&amp;nbsp; Its quite annoying.&amp;nbsp; What I would suggest is that you identify what the precision needs to be for your compare values and then explicitly round to that precision.&amp;nbsp; I.e. round(variable_from_base,8.2) = round(variable_from_comp,8.2).&lt;/P&gt;&lt;P&gt;So round them in both datasets then do a compare again.&amp;nbsp; You could also put both variables into a character field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jun 2014 10:29:53 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2014-06-17T10:29:53Z</dc:date>
    <item>
      <title>Need help with proc compare</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144246#M38352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to compare two large dasets (over 3 millions of rows) and I am introduced myselft to proc compare.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tell you what are I Doing to run the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First I run a proc sort on both datasets to order the variables. After this I change the name and format of the compare dataset &lt;SPAN class="short_text" id="result_box" lang="en"&gt;&lt;SPAN class="hps"&gt;for&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;having the same structure.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;and the last step&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;proc compare base = a compare=b /* MAXPRINT=total*/&lt;/P&gt;&lt;P&gt;out= result outnoequal outbase outcomp outdif outpercent transpose;&lt;/P&gt;&lt;P&gt;var var1................varn;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a sample of the result I have&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;_OBS_1=76637 _OBS_2=76637:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variable Valor base Compare Diff. % Diff&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var1 3039.07 3039.07 -4.54747E-13 -1.49634E-14&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var2 3039.07 3039.07 -4.54747E-13 -1.49634E-14&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" id="result_box" lang="en"&gt;&lt;SPAN class="hps"&gt;and&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;as&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;this sample over 50,000 more&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;what do I doing wrong?, how can I fix this problem?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;Thanks&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2014 09:44:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144246#M38352</guid>
      <dc:creator>SergioSanchez</dc:creator>
      <dc:date>2014-06-17T09:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with proc compare</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144247#M38353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, what is the question?&amp;nbsp; The output from proc compare is not always easy to read and so may require some post-processing.&amp;nbsp; Also, if you are comparing data of that size you may want to consider a bit more what you want to compare, for instance can you group the data, maybe summarise, of do by group joins to identify certain fall outs.&amp;nbsp; There are other methodologies also, some of the stats procedures will give you counts, outliers.&amp;nbsp; Distinct lists for codes, defined lists.&amp;nbsp; Maybe if you have a visit schedule, you could pull that out as a tabulate etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2014 09:51:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144247#M38353</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-06-17T09:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with proc compare</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144248#M38354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know both variables are the same so I'd like to ajust the proc to obtain equalities in variable like the sample. also I have tested with proc means but I have the same problem plus the outpercent option don't work for me because I don't how to change de format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What are the other methods I can use to compare two datasets?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;base&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 25451159.00&lt;/P&gt;&lt;P&gt;compare&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 25451275.42&lt;/P&gt;&lt;P&gt;diff&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 116.42&lt;/P&gt;&lt;P&gt;percent&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advanced&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2014 10:20:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144248#M38354</guid>
      <dc:creator>SergioSanchez</dc:creator>
      <dc:date>2014-06-17T10:20:31Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with proc compare</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144249#M38355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like you are running into the display versus storage issue.&amp;nbsp; You may see in your datasets:&lt;/P&gt;&lt;P&gt;3039.07&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3039.07&lt;/P&gt;&lt;P&gt;Which look the same.&amp;nbsp; However the data is really (an example):&lt;/P&gt;&lt;P&gt;3039.0700000000000000001&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3039.07&lt;/P&gt;&lt;P&gt;Hence a fractional difference.&amp;nbsp; I have come up against this several times and it can happen in several different ways, most notable if the base programmer uses SAS functions to create a calculated variable, and I use SQL.&amp;nbsp; Its quite annoying.&amp;nbsp; What I would suggest is that you identify what the precision needs to be for your compare values and then explicitly round to that precision.&amp;nbsp; I.e. round(variable_from_base,8.2) = round(variable_from_comp,8.2).&lt;/P&gt;&lt;P&gt;So round them in both datasets then do a compare again.&amp;nbsp; You could also put both variables into a character field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2014 10:29:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144249#M38355</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-06-17T10:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with proc compare</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144250#M38356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the fact that your variables for some reason differ by a minute amount but will not affect your other uses you can use the FUZZ option on the Proc Compare statement to only report inequalities greater than the value you set.&lt;BR /&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc compare base = a compare=b fuzz= 0.00001&lt;/P&gt;&lt;P&gt;out= result outnoequal outbase outcomp outdif outpercent transpose;&lt;/P&gt;&lt;P&gt;&amp;lt;remainder of compare code here&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will only report an inequaly greater than 0.00001 (or 1 E-5). Given your example a fuzz of 0.00000001 would probably remove most of the inequality messages.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2014 14:41:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144250#M38356</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-06-17T14:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with proc compare</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144251#M38357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In regarding to precision issue, it could get messier than just that.&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: navy; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;_NULL_&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A=&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;5.1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B=&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;3.5&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C1=&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;1.6&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C2=A-B;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; C1=C2 &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;THEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;PUT&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; C1 &lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;30.28&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; color: purple; background: white;"&gt;" EQUAL "&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; C2 &lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;30.28&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;ELSE&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; PUT C1 &lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;30.28&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; color: purple; background: white;"&gt;" NOT EQUAL "&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; C2 &lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;30.28&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;PUT C1 HEX16./C2 HEX16.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: navy; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;SAS (like other computer software) is using Hex. format to store the value, Decimal has always been a approximate approach. In this case, only Hex format can tell whether they are equal or not.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;Regards, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;Haikuo&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;Edit: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;of course, Binary will also do:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;PUT C1 BINARY64. /C2 BINARY64.;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2014 17:28:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144251#M38357</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-06-17T17:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with proc compare</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144252#M38358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello SergioSanchez,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can specify the criterion for judging the equality of numeric values.&amp;nbsp; See:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/66663/HTML/default/viewer.htm#n0c1y14wyd3u7yn1dmfcpaejllsn.htm" title="http://support.sas.com/documentation/cdl/en/proc/66663/HTML/default/viewer.htm#n0c1y14wyd3u7yn1dmfcpaejllsn.htm"&gt;PROC COMPARE :: Base SAS(R) 9.4 Procedures Guide, Second Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/66663/HTML/default/viewer.htm#n04714wiqe78lln1dib6b2h0efoq.htm#n1qxqymug4990kn19wjpm7y98dah" title="http://support.sas.com/documentation/cdl/en/proc/66663/HTML/default/viewer.htm#n04714wiqe78lln1dib6b2h0efoq.htm#n1qxqymug4990kn19wjpm7y98dah"&gt;Concepts: COMPARE Procedure :: Base SAS(R) 9.4 Procedures Guide, Second Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might try:&lt;/P&gt;&lt;P&gt;&amp;nbsp; method=absolute&lt;/P&gt;&lt;P&gt;&amp;nbsp; criterion=0.0000001&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to suppress differences smaller than 10e-7, for example, unless you're not sure if they're significant.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2014 18:55:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144252#M38358</guid>
      <dc:creator>JasonAllen</dc:creator>
      <dc:date>2014-06-17T18:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with proc compare</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144253#M38359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Think you need BY&amp;nbsp; and or ID statements to make key-based compare&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;good luck&lt;/P&gt;&lt;P&gt;peterC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2014 19:21:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144253#M38359</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2014-06-17T19:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with proc compare</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144254#M38360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I finally resolved with the options;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fuzz= 0.00001 criterion=-1000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the moment it´s working fine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks all for your time and posts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2014 10:27:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Need-help-with-proc-compare/m-p/144254#M38360</guid>
      <dc:creator>SergioSanchez</dc:creator>
      <dc:date>2014-06-18T10:27:08Z</dc:date>
    </item>
  </channel>
</rss>

