<?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: missing values in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/missing-values/m-p/361186#M23737</link>
    <description>&lt;P&gt;Post the input dataset(s) for the query (use a datastep as described in &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt;), and the query code.&lt;/P&gt;
&lt;P&gt;How are we supposed to help with your data and/or code if we know neither?&lt;/P&gt;</description>
    <pubDate>Wed, 24 May 2017 12:57:21 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2017-05-24T12:57:21Z</dc:date>
    <item>
      <title>missing values</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/missing-values/m-p/361179#M23736</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had a question with my query, but I am generating a sas dataset and I have 3 variables out of 10 that are becoming missing for some rows. (AYB modality, engage date, and trigger date) Im not sure if a solution or resolution can come without a code, but these three values are coming up as missing in some rows in the code, while the name, dob, and Account name and all other values are showing up. Is there a way to retrive these missing values? Or are they just missing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rida&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2017 12:49:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/missing-values/m-p/361179#M23736</guid>
      <dc:creator>Rsadiq1</dc:creator>
      <dc:date>2017-05-24T12:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: missing values</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/missing-values/m-p/361186#M23737</link>
      <description>&lt;P&gt;Post the input dataset(s) for the query (use a datastep as described in &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt;), and the query code.&lt;/P&gt;
&lt;P&gt;How are we supposed to help with your data and/or code if we know neither?&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2017 12:57:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/missing-values/m-p/361186#M23737</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-05-24T12:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: missing values</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/missing-values/m-p/361187#M23738</link>
      <description>&lt;P&gt;Well, as for now,&amp;nbsp;they are "just" missing.&lt;/P&gt;
&lt;P&gt;Why, only you can find out. Potential problem can be that they are missing in the source, or if you are&amp;nbsp;performing an outer join, missing values will occurs when the row only will be populated from one table.&lt;/P&gt;
&lt;P&gt;Or your query logic.&lt;/P&gt;
&lt;P&gt;We need more info (like the source data, query/log) to be able to help you better.&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2017 12:57:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/missing-values/m-p/361187#M23738</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2017-05-24T12:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: missing values</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/missing-values/m-p/361193#M23739</link>
      <description>&lt;P&gt;Well my query is below, but was just asking the question in a general sense&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;proc sql inobs=max outobs=max;&lt;BR /&gt;create table work.modality as&lt;BR /&gt;select distinct a.ayb_id,&lt;BR /&gt;&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;&amp;nbsp; a.type&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as AYB_MODALITY&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; format=$15.,&lt;BR /&gt;&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;&amp;nbsp; a.activity_dt as AYB_MOD_ENG_DT format=mmddyy10.,&lt;BR /&gt;&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;&amp;nbsp; a.activity_dt as TRIGGER_DATE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; format=mmddyy10.&lt;BR /&gt;from rptdata.mbr_activation as a&lt;BR /&gt;where a.ayb_id in (select distinct ayb_id from refdata.aybid_nps_master_&amp;amp;rundat.)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; and a.ayb_id in (select distinct ayb_id from&amp;nbsp; input.ayb_mbr_sbscr_id2_&amp;amp;rundat.)&lt;BR /&gt;order by ayb_id&lt;BR /&gt;;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;/***&lt;BR /&gt;proc print data=work.modality(obs=9);&lt;BR /&gt;run;&lt;BR /&gt;&amp;nbsp;***/&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;create table sasdata.five as&lt;BR /&gt;select distinct a.*,&lt;BR /&gt;&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; b.AYB_MODALITY,&lt;BR /&gt;&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; b.AYB_MOD_ENG_DT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; format=mmddyy10.,&lt;BR /&gt;&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; b.TRIGGER_DATE&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; format=mmddyy10.&lt;BR /&gt;from sasdata.four as a&lt;BR /&gt;left join&lt;BR /&gt;&amp;nbsp; work.modality as b&lt;BR /&gt;&amp;nbsp; on a.mbr_pgm_id = b.ayb_id&lt;BR /&gt;order by a.mbr_id&lt;BR /&gt;;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2017 13:12:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/missing-values/m-p/361193#M23739</guid>
      <dc:creator>Rsadiq1</dc:creator>
      <dc:date>2017-05-24T13:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: missing values</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/missing-values/m-p/361203#M23741</link>
      <description>&lt;P&gt;When you have a left join, all observations from the "left" dataset will be included; if some of those have no match in the "right" dataset, the variables from there will be set to missing.&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2017 13:32:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/missing-values/m-p/361203#M23741</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-05-24T13:32:45Z</dc:date>
    </item>
  </channel>
</rss>

