<?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: SAS NOT GIVING RESULT in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-NOT-GIVING-RESULT/m-p/539558#M148687</link>
    <description>&lt;P&gt;Please post code using {i} or running-man icon and format the code before to increase readability.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you can't post the data, maybe posting the log, using the already mentioned {i}-icon, could help us helping you.&lt;/P&gt;</description>
    <pubDate>Fri, 01 Mar 2019 08:35:05 GMT</pubDate>
    <dc:creator>andreas_lds</dc:creator>
    <dc:date>2019-03-01T08:35:05Z</dc:date>
    <item>
      <title>SAS NOT GIVING RESULT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-NOT-GIVING-RESULT/m-p/539547#M148682</link>
      <description>&lt;P&gt;Data EG;&lt;BR /&gt;LENGTH SUBJID 3 VISIT $30 DOMAIN $30 Was_ECG_Performed $30 EG_STAT_NO $100 Overall_assessment $50 EG_DESC_ABNL $100;&lt;BR /&gt;infile "\\arlhosas\CDS\TLF Creations\HALAVEN\Tables\12-Lead ECG\EG.csv" delimiter = ',' missover dsd firstobs = 2;&lt;BR /&gt;input SUBJID VISIT$ DOMAIN$ Was_ECG_Performed$ EG_STAT_NO$ Overall_assessment$ EG_DESC_ABNL$;&lt;BR /&gt;Run;&lt;BR /&gt;/*title "FREQUENCY TABLE FOR 12 LEAD ECG";&lt;BR /&gt;Proc freq data = work.EG;&lt;BR /&gt;tables Was_ECG_Performed Overall_assessment/ nocum;&lt;BR /&gt;Label Was_ECG_Performed='Was ECG Performed?' Overall_assessment='Overall assessment';&lt;BR /&gt;Run;*/&lt;/P&gt;&lt;P&gt;Proc report data=eg;&lt;BR /&gt;Column Was_ECG_Performed Overall_assessment;&lt;BR /&gt;Define Was_ECG_Performed/Computed;&lt;BR /&gt;Define Overall_assessment/Computed;&lt;BR /&gt;Compute after;&lt;BR /&gt;Was_ECG_Performed = (YES/YES+NO)*100;&lt;BR /&gt;endcomp;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 07:12:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-NOT-GIVING-RESULT/m-p/539547#M148682</guid>
      <dc:creator>shyamtawde</dc:creator>
      <dc:date>2019-03-01T07:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: SAS NOT GIVING RESULT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-NOT-GIVING-RESULT/m-p/539550#M148684</link>
      <description>&lt;P&gt;What's your question?&lt;/P&gt;&lt;P&gt;We cannot run your code since we do not have the source file.&lt;/P&gt;&lt;P&gt;A log extract would be useful.&lt;/P&gt;&lt;P&gt;Put a little more effort into asking your question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, given the info you've provided, I'd say you need to reboot your SAS server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 02:19:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-NOT-GIVING-RESULT/m-p/539550#M148684</guid>
      <dc:creator>ScottBass</dc:creator>
      <dc:date>2019-03-04T02:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS NOT GIVING RESULT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-NOT-GIVING-RESULT/m-p/539558#M148687</link>
      <description>&lt;P&gt;Please post code using {i} or running-man icon and format the code before to increase readability.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you can't post the data, maybe posting the log, using the already mentioned {i}-icon, could help us helping you.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 08:35:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-NOT-GIVING-RESULT/m-p/539558#M148687</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-03-01T08:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: SAS NOT GIVING RESULT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-NOT-GIVING-RESULT/m-p/539599#M148709</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data EG;
    LENGTH SUBJID 3 VISIT $30 DOMAIN $30 Was_ECG_Performed $30  EG_STAT_NO $100 Overall_assessment $50 EG_DESC_ABNL $100;
	infile "EG.csv" delimiter = ',' missover dsd firstobs = 2;
	input SUBJID VISIT$	DOMAIN$ Was_ECG_Performed$ EG_STAT_NO$  Overall_assessment$ EG_DESC_ABNL$;
	Run;
Proc report data=EG;
Column Was_ECG_Performed Overall_assessment;
Define Was_ECG_Performed/Computed;
Define Overall_assessment/Computed;
Compute after;
Was_ECG_Performed = (YES/YES+NO)*100;
endcomp;
Run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Mar 2019 12:20:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-NOT-GIVING-RESULT/m-p/539599#M148709</guid>
      <dc:creator>shyamtawde</dc:creator>
      <dc:date>2019-03-01T12:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: SAS NOT GIVING RESULT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-NOT-GIVING-RESULT/m-p/539631#M148725</link>
      <description>&lt;P&gt;A couple of items are way off base here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your incoming data set contains a character variable named Was_ECG_Performed.&amp;nbsp; Yet you are trying to compute a numeric variable using that name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your program refers to two variables named YES and NO.&amp;nbsp; Where do they come from?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The posters here always appreciate when you have tried to solve the problem first, and showing what you tried.&amp;nbsp; In this case, you might be better off trying to describe the result you are trying to obtain.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 14:23:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-NOT-GIVING-RESULT/m-p/539631#M148725</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-03-01T14:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: SAS NOT GIVING RESULT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-NOT-GIVING-RESULT/m-p/539746#M148770</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/226012"&gt;@shyamtawde&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Data EG;&lt;BR /&gt;LENGTH SUBJID 3 VISIT $30 DOMAIN $30 Was_ECG_Performed $30 EG_STAT_NO $100 Overall_assessment $50 EG_DESC_ABNL $100;&lt;BR /&gt;infile "\\arlhosas\CDS\TLF Creations\HALAVEN\Tables\12-Lead ECG\EG.csv" delimiter = ',' missover dsd firstobs = 2;&lt;BR /&gt;input SUBJID VISIT$ DOMAIN$ Was_ECG_Performed$ EG_STAT_NO$ Overall_assessment$ EG_DESC_ABNL$;&lt;BR /&gt;Run;&lt;BR /&gt;/*title "FREQUENCY TABLE FOR 12 LEAD ECG";&lt;BR /&gt;Proc freq data = work.EG;&lt;BR /&gt;tables Was_ECG_Performed Overall_assessment/ nocum;&lt;BR /&gt;Label Was_ECG_Performed='Was ECG Performed?' Overall_assessment='Overall assessment';&lt;BR /&gt;Run;*/&lt;/P&gt;
&lt;P&gt;Proc report data=eg;&lt;BR /&gt;Column Was_ECG_Performed Overall_assessment;&lt;BR /&gt;Define Was_ECG_Performed/Computed;&lt;BR /&gt;Define Overall_assessment/Computed;&lt;BR /&gt;Compute after;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT color="#ff0000"&gt;Was_ECG_Performed = (YES/YES+NO)*100;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;endcomp;&lt;BR /&gt;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What ever is going on you likely have a logic error in the line I highlighted above.&lt;/P&gt;
&lt;P&gt;Yes/yes is going to return 1 as long as Yes in not zero and defined. I think you intended to use:&lt;/P&gt;
&lt;PRE&gt; yes/(yes+no) * 100


&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Mar 2019 19:14:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-NOT-GIVING-RESULT/m-p/539746#M148770</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-03-01T19:14:04Z</dc:date>
    </item>
  </channel>
</rss>

