<?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: Exported data set to examine if changes I coded were made. Receiving import error. in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Exported-data-set-to-examine-if-changes-I-coded-were-made/m-p/835081#M35931</link>
    <description>&lt;P&gt;Every SAS user interface has a data set viewer, in every interface I know, you double-click on the actual data set on the left side of the screen. To be more specific, I would have to know what SAS user interface you are using. Once you have the data set viewable on your screen, you can&amp;nbsp; confirm the two observations are no longer present.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Checking the log will tell you if records were deleted, and how many. It won't tell you if you deleted the right records. In some cases, it is trivial to delete the right records; in other cases it is not so trivial and requires careful checking.&lt;/P&gt;</description>
    <pubDate>Sun, 25 Sep 2022 21:30:27 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2022-09-25T21:30:27Z</dc:date>
    <item>
      <title>Exported data set to examine if changes I coded were made. Receiving import error.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Exported-data-set-to-examine-if-changes-I-coded-were-made/m-p/835054#M35925</link>
      <description>&lt;P&gt;I needed to delete 2 observations. I wanted to check the dataset to make sure the changes had been made. Below are my export and import statements. I continue to get the following error for the import statement:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc export data = ICPNEED.cg_relation_fix&lt;BR /&gt;Outfile = 'C:\Users\gtuck\OneDrive\Documents\Gretchen Dissertation\SAS\Working Data Set\cg_realtion_fix.xlsx'&lt;BR /&gt;DBMS = XLSX Replace;&lt;BR /&gt;Sheet = "cg_relation_fix";&lt;BR /&gt;Run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc import datafile = 'C:\Users\gtuck\OneDrive\Documents\Gretchen Dissertation\SAS\Working Data Set\cg_relation_fix.xlsx'&lt;BR /&gt;DBMS = xlsx&lt;BR /&gt;OUT = ICPNEED.relation_fix&lt;BR /&gt;Replace;&lt;BR /&gt;Run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the log:&lt;/P&gt;&lt;P&gt;329 Proc import datafile = 'C:\Users\gtuck\OneDrive\Documents\Gretchen Dissertation\SAS\Working&lt;BR /&gt;329! Data Set\cg_relation_fix.xlsx'&lt;BR /&gt;330 DBMS = xlsx&lt;BR /&gt;331 OUT = ICPNEED.relation_fix&lt;BR /&gt;332 Replace;&lt;BR /&gt;333 Run;&lt;/P&gt;&lt;P&gt;ERROR: Physical file does not exist, C:\Users\gtuck\OneDrive\Documents\Gretchen&lt;BR /&gt;Dissertation\SAS\Working Data Set\cg_relation_fix.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Sep 2022 13:42:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Exported-data-set-to-examine-if-changes-I-coded-were-made/m-p/835054#M35925</guid>
      <dc:creator>gtucke1</dc:creator>
      <dc:date>2022-09-25T13:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Exported data set to examine if changes I coded were made. Receiving import error.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Exported-data-set-to-examine-if-changes-I-coded-were-made/m-p/835055#M35926</link>
      <description>&lt;P&gt;Why don't you just check this in SAS instead of Excel?&lt;/P&gt;</description>
      <pubDate>Sun, 25 Sep 2022 13:45:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Exported-data-set-to-examine-if-changes-I-coded-were-made/m-p/835055#M35926</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-09-25T13:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Exported data set to examine if changes I coded were made. Receiving import error.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Exported-data-set-to-examine-if-changes-I-coded-were-made/m-p/835056#M35927</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;What is the procedure for checking in SAS?</description>
      <pubDate>Sun, 25 Sep 2022 13:58:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Exported-data-set-to-examine-if-changes-I-coded-were-made/m-p/835056#M35927</guid>
      <dc:creator>gtucke1</dc:creator>
      <dc:date>2022-09-25T13:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Exported data set to examine if changes I coded were made. Receiving import error.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Exported-data-set-to-examine-if-changes-I-coded-were-made/m-p/835063#M35930</link>
      <description>&lt;P&gt;The SAS log should show whether or not two observations were deleted.&lt;/P&gt;
&lt;P&gt;Example:&amp;nbsp; This data step ended up deleting 5 observations.&lt;/P&gt;
&lt;PRE&gt;214  data want;
215    set sashelp.class;
216    if age=12 then delete;
217  run;

NOTE: There were 19 observations read from the data set SASHELP.CLASS.
NOTE: The data set WORK.WANT has 14 observations and 5 variables.
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Sep 2022 16:08:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Exported-data-set-to-examine-if-changes-I-coded-were-made/m-p/835063#M35930</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-09-25T16:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: Exported data set to examine if changes I coded were made. Receiving import error.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Exported-data-set-to-examine-if-changes-I-coded-were-made/m-p/835081#M35931</link>
      <description>&lt;P&gt;Every SAS user interface has a data set viewer, in every interface I know, you double-click on the actual data set on the left side of the screen. To be more specific, I would have to know what SAS user interface you are using. Once you have the data set viewable on your screen, you can&amp;nbsp; confirm the two observations are no longer present.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Checking the log will tell you if records were deleted, and how many. It won't tell you if you deleted the right records. In some cases, it is trivial to delete the right records; in other cases it is not so trivial and requires careful checking.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Sep 2022 21:30:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Exported-data-set-to-examine-if-changes-I-coded-were-made/m-p/835081#M35931</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-09-25T21:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Exported data set to examine if changes I coded were made. Receiving import error.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Exported-data-set-to-examine-if-changes-I-coded-were-made/m-p/835091#M35932</link>
      <description>&lt;P&gt;Typo:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Outfile = 'C:\Users\gtuck\OneDrive\Documents\Gretchen Dissertation\SAS\Working Data Set\cg_re&lt;FONT color="#FF0000"&gt;al&lt;/FONT&gt;tion_fix.xlsx'

datafile = 'C:\Users\gtuck\OneDrive\Documents\Gretchen Dissertation\SAS\Working Data Set\cg_re&lt;FONT color="#FF0000"&gt;la&lt;/FONT&gt;tion_fix.xlsx'&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;realtion vs. relation&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 01:05:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Exported-data-set-to-examine-if-changes-I-coded-were-made/m-p/835091#M35932</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-09-26T01:05:10Z</dc:date>
    </item>
  </channel>
</rss>

