<?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: Invalid or missing data forBlock and Y in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/323498#M17105</link>
    <description>&lt;P&gt;Hi Rick-SAS,&lt;/P&gt;&lt;P&gt;I tried to check the local language who are supported on my SAS system base on your guide.&lt;/P&gt;&lt;P&gt;The results is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAS (r) Proprietary Software Version 9.4&amp;nbsp; TS1M4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Informations sur la valeur de l'option SAS LOCALE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Valeur :FR_FR&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Etendue : IOM ROOT COMP ENV&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Comment la valeur d'option est définie : Options Statement&lt;/P&gt;&lt;P&gt;It's the french?. How can I try to change the language of output data to english now?&lt;/P&gt;&lt;P&gt;I'm new in SAS, it's completely dificult for me.&lt;/P&gt;&lt;P&gt;Please help me, it's very important for me now.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;</description>
    <pubDate>Tue, 10 Jan 2017 01:16:24 GMT</pubDate>
    <dc:creator>Thanhlong</dc:creator>
    <dc:date>2017-01-10T01:16:24Z</dc:date>
    <item>
      <title>Invalid or missing data forBlock and Y</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/322644#M17059</link>
      <description>&lt;P&gt;Please help me,&lt;/P&gt;&lt;P&gt;I don t knnow why it usually say error : invalid or missing error&lt;/P&gt;&lt;P&gt;I send you my code and data&lt;/P&gt;&lt;P&gt;Excuse me if i write wrong somethings. I don t speak very well english.&lt;/P&gt;&lt;P&gt;Thank you so much,&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2017 12:54:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/322644#M17059</guid>
      <dc:creator>Thanhlong</dc:creator>
      <dc:date>2017-01-05T12:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Invalid or missing data forBlock and Y</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/322654#M17060</link>
      <description>&lt;P&gt;Give a name to your data set. Then refer to the data by its name.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data Experiment;
Input P $ M $ Block Y;
cards;
P0 M20 1 215
P0 M25 1 215
P0 M30 1 250
... more data here ...
;
proc glimmix data=Experiment;
 class P M Block;
 model Y = P M P*M;
 random Block P*Block;
 lsmeans P*M / adjust=simulate lines;  /* change P|M to P*M */
 run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 05 Jan 2017 13:30:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/322654#M17060</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-01-05T13:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Invalid or missing data forBlock and Y</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/322892#M17071</link>
      <description>&lt;P&gt;Thank you for your reply Rick-SAS,&lt;/P&gt;&lt;P&gt;I tried to give the name of data but it still does not work with the same error.&lt;/P&gt;&lt;P&gt;I attach here the error record for you.&lt;/P&gt;&lt;P&gt;Help me to solve this situation, please .&lt;/P&gt;&lt;P&gt;Tran&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jan 2017 04:06:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/322892#M17071</guid>
      <dc:creator>Thanhlong</dc:creator>
      <dc:date>2017-01-06T04:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: Invalid or missing data forBlock and Y</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/322936#M17072</link>
      <description>&lt;P&gt;Your DATA step is not working, so the data set is corrupted. In particular, the BLOCK variable is always set to missing, which is why PROC GLIMMIX is complaining. &amp;nbsp; Try this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data Coibang;
length P $4. M $3.;
Input P $ M $ Block Y;
cards;
P0 M20 1 215
P0 M25 1 215
P0 M30 1 250
P0 M20 2 215
P0 M25 2 195
P0 M30 2 230
P0 M20 3 193
P0 M25 3 190
P0 M30 3 245
P50 M20 1 300
P50 M25 1 345
P50 M30 1 350
P50 M20 2 310
P50 M25 2 334
P50 M30 2 325
P50 M20 3 340
P50 M25 3 360
P50 M30 3 330
P100 M20 1 370
P100 M25 1 395
P100 M30 1 340
P100 M20 2 340
P100 M25 2 380
P100 M30 2 300
P100 M20 3 335
P100 M25 3 375
P100 M30 3 315
P150 M20 1 300
P150 M25 1 295
P150 M30 1 325
P150 M20 2 250
P150 M25 2 310
P150 M30 2 320
P150 M20 3 298
P150 M25 3 320
P150 M30 3 315
;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 06 Jan 2017 11:18:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/322936#M17072</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-01-06T11:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Invalid or missing data forBlock and Y</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/323341#M17099</link>
      <description>&lt;P&gt;Thank you so much Rick-SAS. I tried and I found that there are somethings wrong when I copy the data from excel to SAS. Now it s ok.&lt;/P&gt;&lt;P&gt;But now I have another question, the results are exported in french, not in english. I don't know why and how I can change it? Can you help me?&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 13:19:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/323341#M17099</guid>
      <dc:creator>Thanhlong</dc:creator>
      <dc:date>2017-01-09T13:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Invalid or missing data forBlock and Y</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/323363#M17100</link>
      <description>&lt;P&gt;Most likely the system LOCALE option is set to French.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can check your LOCALE option by running the following statements and then looking in the SAS log.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc options option=LOCALE value;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can try to change your locale by using an OPTIONS statement such as&lt;/P&gt;
&lt;P&gt;options locale=en_US;&lt;/P&gt;
&lt;P&gt;You might need to check with your SAS administrator to see which locales.languages are supported on your SAS system.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 14:30:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/323363#M17100</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-01-09T14:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Invalid or missing data forBlock and Y</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/323498#M17105</link>
      <description>&lt;P&gt;Hi Rick-SAS,&lt;/P&gt;&lt;P&gt;I tried to check the local language who are supported on my SAS system base on your guide.&lt;/P&gt;&lt;P&gt;The results is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAS (r) Proprietary Software Version 9.4&amp;nbsp; TS1M4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Informations sur la valeur de l'option SAS LOCALE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Valeur :FR_FR&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Etendue : IOM ROOT COMP ENV&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Comment la valeur d'option est définie : Options Statement&lt;/P&gt;&lt;P&gt;It's the french?. How can I try to change the language of output data to english now?&lt;/P&gt;&lt;P&gt;I'm new in SAS, it's completely dificult for me.&lt;/P&gt;&lt;P&gt;Please help me, it's very important for me now.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jan 2017 01:16:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Invalid-or-missing-data-forBlock-and-Y/m-p/323498#M17105</guid>
      <dc:creator>Thanhlong</dc:creator>
      <dc:date>2017-01-10T01:16:24Z</dc:date>
    </item>
  </channel>
</rss>

