<?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: ODS OUTPUT ISSUES: WARNING OUTPUT NOT CREATED in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-OUTPUT-ISSUES-WARNING-OUTPUT-NOT-CREATED/m-p/703125#M24704</link>
    <description>&lt;P&gt;Your log shows:&lt;/P&gt;
&lt;PRE&gt;86 DATA WORK.CHISQRESULTS;
87 SET&lt;FONT size="6" color="#800080"&gt;&lt;STRONG&gt; HYPRSLT&lt;/STRONG&gt;&lt;/FONT&gt;.CHISQRESULTS;&lt;/PRE&gt;
&lt;P&gt;The ODS output&lt;/P&gt;
&lt;PRE&gt;ODS OUTPUT CROSSTABFREQS = WORK.STATEPERCENTS
CHISQ =&lt;FONT size="6" color="#800080"&gt;&lt;STRONG&gt; WORK&lt;/STRONG&gt;&lt;/FONT&gt;.CHISQRESULTS;&lt;/PRE&gt;
&lt;P&gt;Does that help?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Be aware that using the same data set for input (Set statement) and output (Data statement) replaces the input data set if there are no serious errors. So you may destroy the data you need. Until more familiar with SAS I strongly recommend not using the coding structure:&lt;/P&gt;
&lt;PRE&gt;data somedatesetname;   
    set somedatesetname;&lt;/PRE&gt;</description>
    <pubDate>Wed, 02 Dec 2020 15:45:55 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2020-12-02T15:45:55Z</dc:date>
    <item>
      <title>ODS OUTPUT ISSUES: WARNING OUTPUT NOT CREATED</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-OUTPUT-ISSUES-WARNING-OUTPUT-NOT-CREATED/m-p/702973#M24701</link>
      <description>&lt;P&gt;Hello All, I need help debugging and understanding errors in my code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What I want&lt;/STRONG&gt; is a permanent dataset named Data.ChiSqResults that looks like this:&lt;/P&gt;&lt;DIV class="page"&gt;&lt;DIV class="section"&gt;&lt;DIV class="layoutArea"&gt;&lt;DIV class="column"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Test&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DF&amp;nbsp; &amp;nbsp;Value&amp;nbsp; &amp;nbsp;P-Value&lt;/P&gt;&lt;P&gt;Chi-Square&amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp;1.71&amp;nbsp; &amp;nbsp; &amp;nbsp;0.43&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What I start with:&lt;/STRONG&gt;&amp;nbsp;See picture ~"Statistics for Table of Death BY State"&lt;/P&gt;&lt;P&gt;But I run my code I get two warnings and an empty dataset. For some Reason, my Ods Output isn't saving to my Work Library and I don't know why. I tried changing locations to the folder Library.Heartattack but that didn't work either.&lt;/P&gt;&lt;P&gt;I tried closing my SAS and that didn't help either.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to get ODS OUTPUT to work one time but I don't know how I did that and it seemed like a goof as it didn't rerun. But even when it did run, I got an empty table (See last picture) as it didn't seem to recognize my IF statement. In addition, I also recieved the sporadic warning: "WARNING: Duplicate data set name on ODS OUTPUT statement. Entry will be ignored." and I don't know what triggers it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TODO:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Isolate the "Chi-Square" Observation in a new Permanent Dataset (HIGHEST PRIORITY)&lt;/LI&gt;&lt;LI&gt;Round the Value and Probability to 2 decimal places without trailing zeroes.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CODE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;* Step 2: Perform a Chi-Square Test and Save the Results *; RUN;&lt;BR /&gt;ODS TRACE ON;&lt;BR /&gt;PROC FREQ DATA = heartattack.ANALYSIS2;&lt;BR /&gt;TABLES Death * STATE /CHISQ NOROW NOPERCENT;&lt;BR /&gt;RUN;&lt;BR /&gt;ODS TRACE OFF;&lt;/P&gt;&lt;P&gt;ODS OUTPUT CROSSTABFREQS = WORK.STATES&lt;BR /&gt;CHISQ = WORK.CHISQRESULTS;&lt;/P&gt;&lt;P&gt;/* ODS OUTPUT CROSSTABFREQS = Heartattack.CROSSTABFREQS */&lt;BR /&gt;/* CHISQ = heartattack.CHISQ; */&lt;BR /&gt;&lt;BR /&gt;DATA WORK.CHISQRESULTS;&lt;BR /&gt;SET Heartattack.CHISQRESULTS;&lt;BR /&gt;KEEP STATISTIC DF VALUE PROB;&lt;BR /&gt;LABEL PROB = "P-VALUE";&lt;BR /&gt;IF STATISITIC = "Chi-Square";&lt;BR /&gt;VALUE = ROUND(VALUE, 0.01);&lt;BR /&gt;PROB = ROUND(PROB, 0.01);&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC PRINT DATA = Heartattack.CHISQRESULTS NOOBS;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOG&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: ODS statements in the SAS Studio environment may disable some output features.&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;73&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74 ODS TRACE ON;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 PROC FREQ DATA = Heartattack.HYPANALYSIS2;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76 TABLES HYPRELDEATHIND * STATECD /CHISQ NOROW NOPERCENT;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 RUN;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Output Added:&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;-------------&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Name: CrossTabFreqs&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Label: Cross-Tabular Freq Table&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Template: Base.Freq.CrossTabFreqs&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Path: Freq.Table1.CrossTabFreqs&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;-------------&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Output Added:&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;-------------&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Name: ChiSq&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Label: Chi-Square Tests&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Template: Base.Freq.ChiSq&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;Path: Freq.Table1.ChiSq&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;-------------&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 573 observations read from the data set heartattack.HYPANALYSIS2.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE FREQ used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.89 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.67 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78 ODS TRACE OFF;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80 ODS OUTPUT CROSSTABFREQS = WORK.STATEPERCENTS&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;81 CHISQ = WORK.CHISQRESULTS;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;82&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83 /* ODS OUTPUT CROSSTABFREQS = HYPRSLT.CROSSTABFREQS */&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84 /* CHISQ = Heartattack.CHISQ; */&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;85&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;86 DATA WORK.CHISQRESULTS;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;87 SET Heartattack.CHISQRESULTS;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;88 KEEP STATISTIC DF VALUE PROB;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;89 LABEL PROB = "P-VALUE";&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;90 IF STATISITIC = "Chi-Square";&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;91 VALUE = ROUND(VALUE, 0.01);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;92 PROB = ROUND(PROB, 0.01);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;93 RUN;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable STATISITIC is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 6 observations read from the data set Heartattack.CHISQRESULTS.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.CHISQRESULTS has 0 observations and 4 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.19 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.17 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;94&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;95 PROC PRINT DATA = Heartattack.CHISQRESULTS NOOBS;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;96 RUN;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: Output 'CHISQ' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;that the appropriate procedure options are used to produce the requested output object. For example, verify that the&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;NOPRINT option is not used.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: Output 'CROSSTABFREQS' was not created. Make sure that the output object name, label, or path is spelled correctly.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;that the NOPRINT option is not used.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 6 observations read from the data set Heartattack.CHISQRESULTS.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.40 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.34 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;97&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;98&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;99 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;111&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;STRONG&gt;SCREENSHOTS&lt;/STRONG&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;PRE class="sasLog"&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-12-01 at 10.12.26 PM.png" style="width: 998px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/52236i8DA74CEFCB687634/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2020-12-01 at 10.12.26 PM.png" alt="Screen Shot 2020-12-01 at 10.12.26 PM.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-12-01 at 10.23.32 PM.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/52238i5C7C0CED4078C8D3/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2020-12-01 at 10.23.32 PM.png" alt="Screen Shot 2020-12-01 at 10.23.32 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="layoutArea"&gt;&lt;DIV class="column"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 10 Dec 2020 15:14:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-OUTPUT-ISSUES-WARNING-OUTPUT-NOT-CREATED/m-p/702973#M24701</guid>
      <dc:creator>Deanna_Payne</dc:creator>
      <dc:date>2020-12-10T15:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: ODS OUTPUT ISSUES: WARNING OUTPUT NOT CREATED</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-OUTPUT-ISSUES-WARNING-OUTPUT-NOT-CREATED/m-p/703037#M24702</link>
      <description>&lt;P&gt;This&lt;/P&gt;
&lt;PRE&gt;NOTE: Variable STATISITIC is uninitialized.&lt;/PRE&gt;
&lt;P&gt;is your most important clue. Basically, you never want to see that NOTE in your log, as it alerts you either to a mis-typed variable name or a variable that you somehow create (e.g. in a FORMAT statement), but never use. Such NOTEs need to be cleaned up, see Maxim 25.&lt;/P&gt;
&lt;P&gt;In your case, it is a typo, as the variable is called statistic, not statis&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;i&lt;/STRONG&gt;&lt;/FONT&gt;tic.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2020 09:07:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-OUTPUT-ISSUES-WARNING-OUTPUT-NOT-CREATED/m-p/703037#M24702</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-12-02T09:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: ODS OUTPUT ISSUES: WARNING OUTPUT NOT CREATED</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-OUTPUT-ISSUES-WARNING-OUTPUT-NOT-CREATED/m-p/703040#M24703</link>
      <description>&lt;P&gt;And PROC PRINT will never create an output called chisq or crosstabfreqs.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2020 09:20:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-OUTPUT-ISSUES-WARNING-OUTPUT-NOT-CREATED/m-p/703040#M24703</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-12-02T09:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: ODS OUTPUT ISSUES: WARNING OUTPUT NOT CREATED</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-OUTPUT-ISSUES-WARNING-OUTPUT-NOT-CREATED/m-p/703125#M24704</link>
      <description>&lt;P&gt;Your log shows:&lt;/P&gt;
&lt;PRE&gt;86 DATA WORK.CHISQRESULTS;
87 SET&lt;FONT size="6" color="#800080"&gt;&lt;STRONG&gt; HYPRSLT&lt;/STRONG&gt;&lt;/FONT&gt;.CHISQRESULTS;&lt;/PRE&gt;
&lt;P&gt;The ODS output&lt;/P&gt;
&lt;PRE&gt;ODS OUTPUT CROSSTABFREQS = WORK.STATEPERCENTS
CHISQ =&lt;FONT size="6" color="#800080"&gt;&lt;STRONG&gt; WORK&lt;/STRONG&gt;&lt;/FONT&gt;.CHISQRESULTS;&lt;/PRE&gt;
&lt;P&gt;Does that help?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Be aware that using the same data set for input (Set statement) and output (Data statement) replaces the input data set if there are no serious errors. So you may destroy the data you need. Until more familiar with SAS I strongly recommend not using the coding structure:&lt;/P&gt;
&lt;PRE&gt;data somedatesetname;   
    set somedatesetname;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Dec 2020 15:45:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-OUTPUT-ISSUES-WARNING-OUTPUT-NOT-CREATED/m-p/703125#M24704</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-12-02T15:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: ODS OUTPUT ISSUES: WARNING OUTPUT NOT CREATED</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-OUTPUT-ISSUES-WARNING-OUTPUT-NOT-CREATED/m-p/703134#M24705</link>
      <description>And, to build on this comment in particular, the ODS OUTPUT statement usually is placed BEFORE your procedure call, not AFTER -- as:&lt;BR /&gt;ODS OUTPUT &amp;lt;for PROC FREQ step&amp;gt;;&lt;BR /&gt;PROC FREQ data=xxx;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;ODS OUTPUT &amp;lt;for PROC MEANS step&amp;gt;;&lt;BR /&gt;PROC MEANS data=xxx;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
      <pubDate>Wed, 02 Dec 2020 16:03:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-OUTPUT-ISSUES-WARNING-OUTPUT-NOT-CREATED/m-p/703134#M24705</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-12-02T16:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: ODS OUTPUT ISSUES: WARNING OUTPUT NOT CREATED</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-OUTPUT-ISSUES-WARNING-OUTPUT-NOT-CREATED/m-p/703549#M24710</link>
      <description>&lt;P&gt;Thankyou everyone for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to fix it with your advice and this is the solution I settled on...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Deanna&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;***;&lt;/P&gt;&lt;P&gt;ODS OUTPUT CROSSTABFREQS = WORK.STATEPERCENTS&lt;BR /&gt;CHISQ = WORK.CHISQRESULTS;&lt;BR /&gt;&lt;BR /&gt;ODS TRACE ON;&lt;BR /&gt;PROC FREQ DATA = Heartattack.ANALYSIS2;&lt;BR /&gt;TABLES HYPRELDEATHIND * STATECD /CHISQ NOROW NOPERCENT;&lt;BR /&gt;RUN;&lt;BR /&gt;ODS TRACE OFF;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DATA WORK.CHISQRESULTS;&lt;BR /&gt;SET Heartattack.CHISQRESULTS;&lt;BR /&gt;KEEP STATISTIC DF VALUE PROB;&lt;BR /&gt;LABEL PROB = "P-VALUE";&lt;BR /&gt;IF STATISTIC = "Chi-Square";&lt;BR /&gt;VALUE = ROUND(VALUE, 0.01);&lt;BR /&gt;PROB = ROUND(PROB, 0.01);&lt;BR /&gt;FORMAT VALUE F12.2&lt;BR /&gt;PROB F12.2;&lt;BR /&gt;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC PRINT DATA = WORK.CHISQRESULTS NOOBS;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 15:15:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-OUTPUT-ISSUES-WARNING-OUTPUT-NOT-CREATED/m-p/703549#M24710</guid>
      <dc:creator>Deanna_Payne</dc:creator>
      <dc:date>2020-12-10T15:15:40Z</dc:date>
    </item>
  </channel>
</rss>

