<?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: help solve ERROR: One or more variables are missing or freq or weight is zero on every observati in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/660053#M197613</link>
    <description>&lt;P&gt;Every single one of those "invalid data" messages means one or more variables are missing.&lt;/P&gt;
&lt;P&gt;Get enough of those and you don't have complete records to model from&lt;/P&gt;
&lt;P&gt;Fix your read program.&lt;/P&gt;
&lt;P&gt;A large economy sized clue appears in this:&lt;/P&gt;
&lt;PRE&gt;Trt=113.24 rep=123.24 seven=. fourteen=. twentyeight=. fiftysix=. _ERROR_=1 _N_=1&lt;/PRE&gt;
&lt;P&gt;The _N_=1 tells you the problem occurred with the first iteration of the data step, so check you data lines closely&lt;/P&gt;
&lt;PRE&gt;ZONE 3&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/FONT&gt;3&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt;3233032330323303233222222222222222222222222222222222222222222222222222222222
NUMR 2&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;9&lt;/STRONG&gt;&lt;/FONT&gt;2&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;9&lt;/STRONG&gt;&lt;/FONT&gt;3E2493E2490E7190E71000000000000000000000000000000000000000000000000000000000

&lt;/PRE&gt;
&lt;P&gt;And those 09 highlighted above tells me that your data you are reading is extremely likely to be TAB delimited.&lt;/P&gt;
&lt;P&gt;Which would mean that you need&lt;/P&gt;
&lt;P&gt;INFILE datalines dlm='09'x;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 16 Jun 2020 14:46:09 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2020-06-16T14:46:09Z</dc:date>
    <item>
      <title>help solve ERROR: One or more variables are missing or freq or weight is zero on every observation.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/659475#M197548</link>
      <description>&lt;PRE&gt;data generalburndown;&lt;BR /&gt;input Trt$ rep$ seven fourteen twentyeight fiftysix;&lt;BR /&gt;datalines;&lt;BR /&gt;1	1	3.24	0.71	0.71	0.71&lt;BR /&gt;1	2	3.24	0.71	0.71	0.71&lt;BR /&gt;1	3	3.24	0.71	0.71	0.71&lt;BR /&gt;1	4	3.24	0.71	0.71	0.71&lt;BR /&gt;2	1	3.24	3.24	0.71	0.71&lt;BR /&gt;2	2	3.24	3.24	0.71	0.71&lt;BR /&gt;2	3	3.24	3.24	0.71	0.71&lt;BR /&gt;2	4	3.24	3.24	0.71	0.71&lt;BR /&gt;3	1	3.24	3.24	0.71	0.71&lt;BR /&gt;3	2	3.24	3.24	0.71	0.71&lt;BR /&gt;3	3	3.24	3.24	0.71	0.71&lt;BR /&gt;3	4	3.24	3.24	0.71	0.71&lt;BR /&gt;4	1	3.24	3.24	0.71	0.71&lt;BR /&gt;4	2	3.24	3.24	0.71	0.71&lt;BR /&gt;4	3	3.24	3.24	0.71	0.71&lt;BR /&gt;4	4	3.24	3.24	0.71	0.71&lt;BR /&gt;5	1	9.58	9.71	8.09	0.71&lt;BR /&gt;5	2	9.25	9.58	3.94	0.71&lt;BR /&gt;5	3	9.58	9.51	8.97	0.71&lt;BR /&gt;5	4	9.71	9.04	6.36	0.71&lt;BR /&gt;6	1	8.54	8.69	0.71	0.71&lt;BR /&gt;6	2	8.25	7.62	0.71	0.71&lt;BR /&gt;6	3	9.04	7.94	0.71	0.71&lt;BR /&gt;6	4	9.64	7.28	0.71	0.71&lt;BR /&gt;7	1	9.51	8.83	4.53	0.71&lt;BR /&gt;7	2	9.64	9.25	8.09	0.71&lt;BR /&gt;7	3	9.11	8.54	4.53	0.71&lt;BR /&gt;7	4	9.38	8.40	4.24	0.71&lt;BR /&gt;8	1	9.45	5.52	8.40	0.71&lt;BR /&gt;8	2	9.51	4.53	4.80	0.71&lt;BR /&gt;8	3	9.25	6.93	4.53	0.71&lt;BR /&gt;8	4	9.31	5.96	5.52	0.71&lt;BR /&gt;9	1	8.54	2.35	5.52	0.71&lt;BR /&gt;9	2	6.36	2.83	2.35	0.71&lt;BR /&gt;9	3	8.09	0.71	0.71	0.71&lt;BR /&gt;9	4	8.09	5.05	0.71	0.71&lt;BR /&gt;10	1	8.09	8.25	0.71	0.71&lt;BR /&gt;10	2	9.38	6.36	0.71	0.71&lt;BR /&gt;10	3	9.11	8.69	0.71	0.71&lt;BR /&gt;10	4	8.97	7.11	0.71	0.71&lt;BR /&gt;11	1	9.77	8.09	8.83	0.71&lt;BR /&gt;11	2	9.38	7.94	6.93	0.71&lt;BR /&gt;11	3	9.58	8.54	6.36	0.71&lt;BR /&gt;11	4	9.64	8.69	5.05	0.71&lt;BR /&gt;12	1	3.24	9.31	0.71	0.71&lt;BR /&gt;12	2	5.05	9.25	3.24	0.71&lt;BR /&gt;12	3	3.94	9.51	3.24	0.71&lt;BR /&gt;12	4	3.24	9.18	3.24	0.71&lt;BR /&gt;13	1	0.71	0.71	0.71	0.71&lt;BR /&gt;13	2	0.71	0.71	0.71	0.71&lt;BR /&gt;13	3	0.71	0.71	0.71	0.71&lt;BR /&gt;13	4	0.71	0.71	0.71	0.71&lt;BR /&gt;;&lt;BR /&gt;proc means  stderr;&lt;BR /&gt;var seven fourteen twentyeight fiftysix;&lt;BR /&gt;class Trt;&lt;BR /&gt;run;&lt;BR /&gt;proc anova;&lt;BR /&gt;class Trt rep;&lt;BR /&gt;model seven fourteen twentyeight fiftysix=Trt rep;&lt;BR /&gt;means Trt rep/lsd tukey;&lt;BR /&gt;run;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Jun 2020 02:23:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/659475#M197548</guid>
      <dc:creator>Afham</dc:creator>
      <dc:date>2020-06-16T02:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: help solve ERROR: One or more variables are missing or freq or weight is zero on every observati</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/659580#M197550</link>
      <description>&lt;P&gt;Where's the log?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 03:20:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/659580#M197550</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-06-16T03:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: help solve ERROR: One or more variables are missing or freq or weight is zero on every observati</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/659582#M197552</link>
      <description>ous sorry, heres the log&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;72&lt;BR /&gt;73 data generalburndown;&lt;BR /&gt;74 input Trt$ rep$ seven fourteen twentyeight fiftysix;&lt;BR /&gt;75 datalines;&lt;BR /&gt;&lt;BR /&gt;NOTE: Invalid data for seven in line 78 1-23.&lt;BR /&gt;NOTE: Invalid data for fourteen in line 79 1-23.&lt;BR /&gt;NOTE: Invalid data for twentyeight in line 80 1-23.&lt;BR /&gt;NOTE: Invalid data for fiftysix in line 81 1-23.&lt;BR /&gt;RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0&lt;BR /&gt;&lt;BR /&gt;81 CHAR 2.2.3.24.3.24.0.71.0.71&lt;BR /&gt;ZONE 30303233032330323303233222222222222222222222222222222222222222222222222222222222&lt;BR /&gt;NUMR 29293E2493E2490E7190E71000000000000000000000000000000000000000000000000000000000&lt;BR /&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;BR /&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;BR /&gt;Trt=113.24 rep=123.24 seven=. fourteen=. twentyeight=. fiftysix=. _ERROR_=1 _N_=1&lt;BR /&gt;NOTE: Invalid data for seven in line 84 1-23.&lt;BR /&gt;NOTE: Invalid data for fourteen in line 85 1-23.&lt;BR /&gt;NOTE: Invalid data for twentyeight in line 86 1-23.&lt;BR /&gt;NOTE: Invalid data for fiftysix in line 87 1-23.&lt;BR /&gt;&lt;BR /&gt;87 CHAR 3.4.3.24.3.24.0.71.0.71&lt;BR /&gt;ZONE 30303233032330323303233222222222222222222222222222222222222222222222222222222222&lt;BR /&gt;NUMR 39493E2493E2490E7190E71000000000000000000000000000000000000000000000000000000000&lt;BR /&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;BR /&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;BR /&gt;Trt=233.24 rep=243.24 seven=. fourteen=. twentyeight=. fiftysix=. _ERROR_=1 _N_=2&lt;BR /&gt;NOTE: Invalid data for seven in line 90 1-23.&lt;BR /&gt;NOTE: Invalid data for fourteen in line 91 1-23.&lt;BR /&gt;NOTE: Invalid data for twentyeight in line 92 1-23.&lt;BR /&gt;NOTE: Invalid data for fiftysix in line 93 1-23.&lt;BR /&gt;&lt;BR /&gt;93 CHAR 5.2.9.25.9.58.3.94.0.71&lt;BR /&gt;ZONE 30303233032330323303233222222222222222222222222222222222222222222222222222222222&lt;BR /&gt;NUMR 59299E2599E5893E9490E71000000000000000000000000000000000000000000000000000000000&lt;BR /&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;BR /&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;BR /&gt;Trt=413.24 rep=423.24 seven=. fourteen=. twentyeight=. fiftysix=. _ERROR_=1 _N_=3&lt;BR /&gt;NOTE: Invalid data for seven in line 96 1-23.&lt;BR /&gt;NOTE: Invalid data for fourteen in line 97 1-23.&lt;BR /&gt;NOTE: Invalid data for twentyeight in line 98 1-23.&lt;BR /&gt;NOTE: Invalid data for fiftysix in line 99 1-23.&lt;BR /&gt;&lt;BR /&gt;99 CHAR 6.4.9.64.7.28.0.71.0.71&lt;BR /&gt;ZONE 30303233032330323303233222222222222222222222222222222222222222222222222222222222&lt;BR /&gt;NUMR 69499E6497E2890E7190E71000000000000000000000000000000000000000000000000000000000&lt;BR /&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;BR /&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;BR /&gt;Trt=539.58 rep=549.71 seven=. fourteen=. twentyeight=. fiftysix=. _ERROR_=1 _N_=4&lt;BR /&gt;NOTE: Invalid data for seven in line 102 1-23.&lt;BR /&gt;NOTE: Invalid data for fourteen in line 103 1-23.&lt;BR /&gt;NOTE: Invalid data for twentyeight in line 104 1-23.&lt;BR /&gt;NOTE: Invalid data for fiftysix in line 105 1-23.&lt;BR /&gt;RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0&lt;BR /&gt;&lt;BR /&gt;105 CHAR 8.2.9.51.4.53.4.80.0.71&lt;BR /&gt;ZONE 30303233032330323303233222222222222222222222222222222222222222222222222222222222&lt;BR /&gt;NUMR 89299E5194E5394E8090E71000000000000000000000000000000000000000000000000000000000&lt;BR /&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;BR /&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;BR /&gt;Trt=719.51 rep=729.64 seven=. fourteen=. twentyeight=. fiftysix=. _ERROR_=1 _N_=5&lt;BR /&gt;NOTE: Invalid data for seven in line 108 1-23.&lt;BR /&gt;NOTE: Invalid data for fourteen in line 109 1-23.&lt;BR /&gt;NOTE: Invalid data for twentyeight in line 110 1-23.&lt;BR /&gt;NOTE: Invalid data for fiftysix in line 111 1-23.&lt;BR /&gt;&lt;BR /&gt;111 CHAR 9.4.8.09.5.05.0.71.0.71&lt;BR /&gt;ZONE 30303233032330323303233222222222222222222222222222222222222222222222222222222222&lt;BR /&gt;NUMR 99498E0995E0590E7190E71000000000000000000000000000000000000000000000000000000000&lt;BR /&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;BR /&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;BR /&gt;Trt=839.25 rep=849.31 seven=. fourteen=. twentyeight=. fiftysix=. _ERROR_=1 _N_=6&lt;BR /&gt;NOTE: Invalid data for seven in line 114 1-24.&lt;BR /&gt;NOTE: Invalid data for fourteen in line 115 1-24.&lt;BR /&gt;NOTE: Invalid data for twentyeight in line 116 1-24.&lt;BR /&gt;NOTE: Invalid data for fiftysix in line 117 1-24.&lt;BR /&gt;&lt;BR /&gt;117 CHAR 11.2.9.38.7.94.6.93.0.71&lt;BR /&gt;ZONE 33030323303233032330323322222222222222222222222222222222222222222222222222222222&lt;BR /&gt;NUMR 119299E3897E9496E9390E7100000000000000000000000000000000000000000000000000000000&lt;BR /&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;BR /&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;BR /&gt;Trt=1018.0 rep=1029.3 seven=. fourteen=. twentyeight=. fiftysix=. _ERROR_=1 _N_=7&lt;BR /&gt;NOTE: Invalid data for seven in line 120 1-24.&lt;BR /&gt;NOTE: Invalid data for fourteen in line 121 1-24.&lt;BR /&gt;NOTE: Invalid data for twentyeight in line 122 1-24.&lt;BR /&gt;NOTE: Invalid data for fiftysix in line 123 1-24.&lt;BR /&gt;&lt;BR /&gt;123 CHAR 12.4.3.24.9.18.3.24.0.71&lt;BR /&gt;ZONE 33030323303233032330323322222222222222222222222222222222222222222222222222222222&lt;BR /&gt;NUMR 129493E2499E1893E2490E7100000000000000000000000000000000000000000000000000000000&lt;BR /&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;BR /&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;BR /&gt;Trt=1139.5 rep=1149.6 seven=. fourteen=. twentyeight=. fiftysix=. _ERROR_=1 _N_=8&lt;BR /&gt;NOTE: Invalid data for seven in line 126 1-24.&lt;BR /&gt;NOTE: Invalid data for fourteen in line 127 1-24.&lt;BR /&gt;NOTE: LOST CARD.&lt;BR /&gt;128 ;&lt;BR /&gt;NOTE: Invalid data errors for file CARDS occurred outside the printed range.&lt;BR /&gt;NOTE: Increase available buffer lines with the INFILE n= option.&lt;BR /&gt;Trt=1310.7 rep=1320.7 seven=. fourteen=. twentyeight=. fiftysix=. _ERROR_=1 _N_=9&lt;BR /&gt;NOTE: SAS went to a new line when INPUT statement reached past the end of a line.&lt;BR /&gt;NOTE: The data set WORK.GENERALBURNDOWN has 8 observations and 6 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;128 ;&lt;BR /&gt;129 proc means stderr;&lt;BR /&gt;130 var seven fourteen twentyeight fiftysix;&lt;BR /&gt;131 class Trt;&lt;BR /&gt;132 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: There were 8 observations read from the data set WORK.GENERALBURNDOWN.&lt;BR /&gt;NOTE: PROCEDURE MEANS used (Total process time):&lt;BR /&gt;real time 0.44 seconds&lt;BR /&gt;cpu time 0.42 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;133 proc anova;&lt;BR /&gt;134 class Trt rep;&lt;BR /&gt;135 model seven fourteen twentyeight fiftysix=Trt rep;&lt;BR /&gt;136 means Trt rep/lsd tukey;&lt;BR /&gt;137 run;&lt;BR /&gt;&lt;BR /&gt;ERROR: One or more variables are missing or freq or weight is zero on every observation.&lt;BR /&gt;138&lt;BR /&gt;139 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;151&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Jun 2020 03:36:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/659582#M197552</guid>
      <dc:creator>Afham</dc:creator>
      <dc:date>2020-06-16T03:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: help solve ERROR: One or more variables are missing or freq or weight is zero on every observati</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/659586#M197555</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&amp;nbsp; ouh, sorry.. i'm new here.. how do i show the error log? i cannot paste the log here.&lt;/P&gt;&lt;DIV class="dijitContentPane dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignCenter dijitContentPaneSingleChild"&gt;&lt;DIV class="dijitBorderContainer dijitContainer row-fluid dijitLayoutContainer"&gt;&lt;DIV class="dijitContentPane dijitAlignCenter dijitContentPaneSingleChild dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane"&gt;&lt;DIV class="tabs dijitBorderContainer dijitContainer dojoDndTarget sasStudioTabsParentContainer dijitLayoutContainer dojoDndContainerOver"&gt;&lt;DIV class="dijitTabContainer dijitTabContainerTop dijitContainer dijitLayoutContainer tabStrip-disabled sasStudioTabsTabContainer sasStudioTabsTabContainerVertical sasStudioTabsTop dijitBorderContainer-child dijitBorderContainer-dijitTabContainerTop dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV class="dijitTabPaneWrapper dijitTabContainerTop-container dijitAlignCenter"&gt;&lt;DIV class="dijitTabContainerTopChildWrapper dijitVisible"&gt;&lt;DIV class="dijitBorderContainer dijitContainer sasStudioTabsTabContainerChild dijitTabPane dijitTabContainerTop-child dijitTabContainerTop-dijitBorderContainer dijitLayoutContainer"&gt;&lt;DIV class="dijitBorderContainer dijitContainer dojoDndTarget dijitBorderContainer-child dijitBorderContainer-dijitBorderContainer dijitBorderContainerPane dijitAlignCenter dijitLayoutContainer dojoDndContainerOver"&gt;&lt;DIV class="dijitTabContainer dijitTabContainerTop dijitContainer dijitLayoutContainer tabStrip-disabled sasSuiteTabs dijitBorderContainer-child dijitBorderContainer-dijitTabContainerTop dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV class="dijitTabPaneWrapper dijitTabContainerTop-container dijitAlignCenter"&gt;&lt;DIV class="dijitTabContainerTopChildWrapper dijitVisible"&gt;&lt;DIV class="dijitBorderContainer dijitContainer dijitTabPane dijitTabContainerTop-child dijitTabContainerTop-dijitBorderContainer dijitLayoutContainer"&gt;&lt;DIV class="dijitBorderContainer dijitContainer dijitBorderContainer-child dijitBorderContainer-dijitBorderContainer dijitBorderContainerPane dijitAlignCenter dijitLayoutContainer"&gt;&lt;DIV class="dijitContentPane dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;&lt;PRE class="sasLog"&gt;&amp;nbsp;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 16 Jun 2020 03:44:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/659586#M197555</guid>
      <dc:creator>Afham</dc:creator>
      <dc:date>2020-06-16T03:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: help solve ERROR: One or more variables are missing or freq or weight is zero on every observati</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/659605#M197557</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/333911"&gt;@Afham&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Welcome!&lt;/P&gt;
&lt;P&gt;Of course you can paste the log, it is just text.&lt;/P&gt;
&lt;P&gt;Use the &amp;lt;/&amp;gt; icon so it is formatted properly.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 04:23:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/659605#M197557</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-06-16T04:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: help solve ERROR: One or more variables are missing or freq or weight is zero on every observati</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/659620#M197567</link>
      <description>&lt;P&gt;That data set does not create any error or warnings in the log. So how representative of your actual data is it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A style point to address, while SAS does not require you to state the name of the data set to use for input and will use the last created data set it is &lt;STRONG&gt;highly recommended &lt;/STRONG&gt;to always specifically name the data set you intend to use with the Data= option.&lt;/P&gt;
&lt;P&gt;That way there is never a question as to exactly which input set is used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Consider: you run a regression and ask for an output parameters data set. Then realize you missed one of the options you intended to request. If you add the option but do not have the Data= input set specified the regression will use the just created output parameter set for the input. A different input data set is quite often going to generate one or more problems, at a minimum quite unexpected output if not actual errors.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second, Proc Anova is one of the "interactive" procedures that allows multiple "run;" statements. You want to end it with a Quit; statement.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 06:19:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/659620#M197567</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-06-16T06:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: help solve ERROR: One or more variables are missing or freq or weight is zero on every observati</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/659652#M197577</link>
      <description>&lt;P&gt;Your code as posted does indeed create the ERROR, because you have tabs in the datalines, and that causes the INPUT statement to skip over lines and set all variables from the 3rd to missing. Maxim 3: Read the Log.&lt;/P&gt;
&lt;P&gt;Adding a matching INFILE statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;infile datalines dlm='09'x dsd truncover;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;created the dataset correctly, and PROC ANOVA ran without ERRORs.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 08:12:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/659652#M197577</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-06-16T08:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: help solve ERROR: One or more variables are missing or freq or weight is zero on every observati</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/660053#M197613</link>
      <description>&lt;P&gt;Every single one of those "invalid data" messages means one or more variables are missing.&lt;/P&gt;
&lt;P&gt;Get enough of those and you don't have complete records to model from&lt;/P&gt;
&lt;P&gt;Fix your read program.&lt;/P&gt;
&lt;P&gt;A large economy sized clue appears in this:&lt;/P&gt;
&lt;PRE&gt;Trt=113.24 rep=123.24 seven=. fourteen=. twentyeight=. fiftysix=. _ERROR_=1 _N_=1&lt;/PRE&gt;
&lt;P&gt;The _N_=1 tells you the problem occurred with the first iteration of the data step, so check you data lines closely&lt;/P&gt;
&lt;PRE&gt;ZONE 3&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/FONT&gt;3&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt;3233032330323303233222222222222222222222222222222222222222222222222222222222
NUMR 2&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;9&lt;/STRONG&gt;&lt;/FONT&gt;2&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;9&lt;/STRONG&gt;&lt;/FONT&gt;3E2493E2490E7190E71000000000000000000000000000000000000000000000000000000000

&lt;/PRE&gt;
&lt;P&gt;And those 09 highlighted above tells me that your data you are reading is extremely likely to be TAB delimited.&lt;/P&gt;
&lt;P&gt;Which would mean that you need&lt;/P&gt;
&lt;P&gt;INFILE datalines dlm='09'x;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 14:46:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/660053#M197613</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-06-16T14:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: help solve ERROR: One or more variables are missing or freq or weight is zero on every observati</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/660624#M197688</link>
      <description>&lt;P&gt;That's one dirty log.&lt;/P&gt;
&lt;P&gt;1. Always look at the log and fix the data until the log is squeaky clean&lt;/P&gt;
&lt;P&gt;2. Always look at the data. Why wouldn't you check that it looks clean?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2020 04:05:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/660624#M197688</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-06-17T04:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: help solve ERROR: One or more variables are missing or freq or weight is zero on every observati</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/660678#M197690</link>
      <description>&lt;P&gt;thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp; for your response. i try to run my code on my friends computer and it run without any problem. it seems that my sas edition or my computer is broken because i just copy and paste the same command in his computer and get the result without problem. sorry for all the inconvenient.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2020 04:15:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/660678#M197690</guid>
      <dc:creator>Afham</dc:creator>
      <dc:date>2020-06-17T04:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: help solve ERROR: One or more variables are missing or freq or weight is zero on every observati</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/660919#M197695</link>
      <description>&lt;P&gt;If your friend has the editor set to replace tabs with blanks, that could explain why it works with her/him.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2020 06:14:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-solve-ERROR-One-or-more-variables-are-missing-or-freq-or/m-p/660919#M197695</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-06-17T06:14:19Z</dc:date>
    </item>
  </channel>
</rss>

