<?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: Why is the output dataset opened in &amp;quot;browse mode&amp;quot;??? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523447#M4622</link>
    <description>I use SAS Windowing Environment. Some Years and _Type_s are shown to have asterisks instead of actual values.</description>
    <pubDate>Tue, 25 Dec 2018 00:39:49 GMT</pubDate>
    <dc:creator>d6k5d3</dc:creator>
    <dc:date>2018-12-25T00:39:49Z</dc:date>
    <item>
      <title>Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523312#M4578</link>
      <description>&lt;P&gt;Everything was fine until I ran the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro cb_summary (cur, reg, code);

proc means data= &amp;amp;cur._c_&amp;amp;reg._&amp;amp;code. noprint;
class Event;
output out= S&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
run;

data S&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
set S&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;

if _TYPE_= 1;
run;

%if &amp;amp;code.= 1 %then %do;
proc means data= &amp;amp;cur._c_&amp;amp;reg._&amp;amp;code. noprint;
class Event Year;
output out= YS&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
run;

data YS&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
set YS&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;

if _TYPE_= 3;
run;
%end;

%mend cb_summary;

%cb_summary (HUF, HUN, 1);
%cb_summary (HUF, HUN, 2);
%cb_summary (HUF, US, 1);
%cb_summary (HUF, US, 2);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I also get these 2 lines in log:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: Table has been opened in browse mode.&lt;BR /&gt;ERROR: Asterisks are an indication of a format width problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is wrong, or where did I go wrong???&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Much thanks.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Dec 2018 03:27:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523312#M4578</guid>
      <dc:creator>d6k5d3</dc:creator>
      <dc:date>2018-12-23T03:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523313#M4579</link>
      <description>&lt;P&gt;Here is a related post about the asterisks error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Procedures/Help-for-a-new-SAS-user-ERROR-Asterisks-are-an-indication-of-a/td-p/214817" target="_blank"&gt;https://communities.sas.com/t5/SAS-Procedures/Help-for-a-new-SAS-user-ERROR-Asterisks-are-an-indication-of-a/td-p/214817&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Dec 2018 03:50:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523313#M4579</guid>
      <dc:creator>pink_poodle</dc:creator>
      <dc:date>2018-12-23T03:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523314#M4580</link>
      <description>&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/235176"&gt;@pink_poodle&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Thank you for your reply. However, unfortunately I cannot relate his code with mine. So I am still confused.</description>
      <pubDate>Sun, 23 Dec 2018 03:55:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523314#M4580</guid>
      <dc:creator>d6k5d3</dc:creator>
      <dc:date>2018-12-23T03:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523315#M4581</link>
      <description>Basically, they added a format statement to the Proc Means step. Explicitly specifying the format of variables helped override the default width that produced the asterisk error.&lt;BR /&gt;</description>
      <pubDate>Sun, 23 Dec 2018 04:06:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523315#M4581</guid>
      <dc:creator>pink_poodle</dc:creator>
      <dc:date>2018-12-23T04:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523321#M4583</link>
      <description>&lt;P&gt;But I have not received any error for the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro eco_summary (cur, reg);

proc means data= &amp;amp;cur._E_&amp;amp;reg. noprint;
class Event;
output out= S&amp;amp;cur._E_&amp;amp;reg.;
run;

data S&amp;amp;cur._E_&amp;amp;reg.;
set S&amp;amp;cur._E_&amp;amp;reg.;

if _TYPE_= 1;
run;

proc means data= &amp;amp;cur._E_&amp;amp;reg. noprint;
class Event Year;
output out= YS&amp;amp;cur._E_&amp;amp;reg.;
run;

data YS&amp;amp;cur._E_&amp;amp;reg.;
set YS&amp;amp;cur._E_&amp;amp;reg.;

if _TYPE_= 3;
run;

%mend eco_summary;

%eco_summary (HUF, HUN);
%eco_summary (HUF, US);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;So, I am not understanding the reasoning behind specifying the format of variables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Dec 2018 08:37:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523321#M4583</guid>
      <dc:creator>d6k5d3</dc:creator>
      <dc:date>2018-12-23T08:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523327#M4584</link>
      <description>&lt;P&gt;Why would you WANT to open a dataset in EDIT mode?&amp;nbsp; I don't recommend trying to use SAS as a data editor.&amp;nbsp; If you want to edit the data edit the raw form and re-run the data step that creates a dataset from the raw data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do not understand how the subject line relates to the body of your question.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Dec 2018 15:11:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523327#M4584</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-12-23T15:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523336#M4588</link>
      <description>Because I never got these NOTE and ERROR before in log:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;NOTE: Table has been opened in browse mode.&lt;BR /&gt;ERROR: Asterisks are an indication of a format width problem.&lt;BR /&gt;&lt;BR /&gt;Why would there be asterisks?</description>
      <pubDate>Sun, 23 Dec 2018 20:04:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523336#M4588</guid>
      <dc:creator>d6k5d3</dc:creator>
      <dc:date>2018-12-23T20:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523338#M4590</link>
      <description>&lt;P&gt;Which step is giving this note and error?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please add the SAS option MPRINT&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options mprint;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to the start of your program, run it and post the SAS log.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Dec 2018 21:33:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523338#M4590</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-12-23T21:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523345#M4595</link>
      <description>&lt;P&gt;Nothing in your code generates any output or opens a window. I suspect this error is from somewhere else in your code. If you still believe otherwise post your log when you’ve added the MPRINT option.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should look up the NWAY option so you can avoid your second step in each of the PROC MEANS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/239423"&gt;@d6k5d3&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Everything was fine until I ran the following code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro cb_summary (cur, reg, code);

proc means data= &amp;amp;cur._c_&amp;amp;reg._&amp;amp;code. noprint;
class Event;
output out= S&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
run;

data S&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
set S&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;

if _TYPE_= 1;
run;

%if &amp;amp;code.= 1 %then %do;
proc means data= &amp;amp;cur._c_&amp;amp;reg._&amp;amp;code. noprint;
class Event Year;
output out= YS&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
run;

data YS&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
set YS&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;

if _TYPE_= 3;
run;
%end;

%mend cb_summary;

%cb_summary (HUF, HUN, 1);
%cb_summary (HUF, HUN, 2);
%cb_summary (HUF, US, 1);
%cb_summary (HUF, US, 2);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I also get these 2 lines in log:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: Table has been opened in browse mode.&lt;BR /&gt;ERROR: Asterisks are an indication of a format width problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is wrong, or where did I go wrong???&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Much thanks.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Dec 2018 01:30:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523345#M4595</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-12-24T01:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523359#M4599</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;, Please see the log:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1062  %macro cb_summary (cur, reg, code);
1063
1064  proc means data= &amp;amp;cur._c_&amp;amp;reg._&amp;amp;code. nway noprint;
1065  class Event;
1066  output out= S&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
1067  run;
1068
1069  /*data S&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
1070  set S&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
1071
1072  if _TYPE_= 1;
1073  run;*/
1074
1075  %if &amp;amp;code.= 1 %then %do;
1076  proc means data= &amp;amp;cur._c_&amp;amp;reg._&amp;amp;code. nway noprint;
1077  class Event Year;
1078  output out= YS&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
1079  run;
1080
1081  /*data YS&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
1082  set YS&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
1083
1084  if _TYPE_= 3;
1085  run;*/
1086  %end;
1087
1088  %mend cb_summary;
1089
1090  options mprint;
1091
1092  %cb_summary (HUF, HUN, 1);
MPRINT(CB_SUMMARY):   proc means data= HUF_c_HUN_1 nway noprint;
MPRINT(CB_SUMMARY):   class Event;
MPRINT(CB_SUMMARY):   output out= SHUF_c_HUN_1;
MPRINT(CB_SUMMARY):   run;

NOTE: There were 841896 observations read from the data set WORK.HUF_C_HUN_1.
NOTE: The data set WORK.SHUF_C_HUN_1 has 5 observations and 28 variables.
NOTE: PROCEDURE MEANS used (Total process time):
      real time           0.83 seconds
      cpu time            0.39 seconds


MPRINT(CB_SUMMARY):   proc means data= HUF_c_HUN_1 nway noprint;
MPRINT(CB_SUMMARY):   class Event Year;
MPRINT(CB_SUMMARY):   output out= YSHUF_c_HUN_1;
MPRINT(CB_SUMMARY):   run;

NOTE: There were 841896 observations read from the data set WORK.HUF_C_HUN_1.
NOTE: The data set WORK.YSHUF_C_HUN_1 has 60 observations and 28 variables.
NOTE: PROCEDURE MEANS used (Total process time):
      real time           0.37 seconds
      cpu time            0.46 seconds


1093  %cb_summary (HUF, HUN, 2);
MPRINT(CB_SUMMARY):   proc means data= HUF_c_HUN_2 nway noprint;
MPRINT(CB_SUMMARY):   class Event;
MPRINT(CB_SUMMARY):   output out= SHUF_c_HUN_2;
MPRINT(CB_SUMMARY):   run;

NOTE: There were 841896 observations read from the data set WORK.HUF_C_HUN_2.
NOTE: The data set WORK.SHUF_C_HUN_2 has 10 observations and 16 variables.
NOTE: PROCEDURE MEANS used (Total process time):
      real time           0.56 seconds
      cpu time            0.28 seconds


1094  %cb_summary (HUF, US, 1);
MPRINT(CB_SUMMARY):   proc means data= HUF_c_US_1 nway noprint;
MPRINT(CB_SUMMARY):   class Event;
MPRINT(CB_SUMMARY):   output out= SHUF_c_US_1;
MPRINT(CB_SUMMARY):   run;

NOTE: There were 841896 observations read from the data set WORK.HUF_C_US_1.
NOTE: The data set WORK.SHUF_C_US_1 has 10 observations and 29 variables.
NOTE: PROCEDURE MEANS used (Total process time):
      real time           0.83 seconds
      cpu time            0.36 seconds


MPRINT(CB_SUMMARY):   proc means data= HUF_c_US_1 nway noprint;
MPRINT(CB_SUMMARY):   class Event Year;
MPRINT(CB_SUMMARY):   output out= YSHUF_c_US_1;
MPRINT(CB_SUMMARY):   run;

NOTE: There were 841896 observations read from the data set WORK.HUF_C_US_1.
NOTE: The data set WORK.YSHUF_C_US_1 has 70 observations and 29 variables.
NOTE: PROCEDURE MEANS used (Total process time):
      real time           0.38 seconds
      cpu time            0.45 seconds


1095  %cb_summary (HUF, US, 2);
MPRINT(CB_SUMMARY):   proc means data= HUF_c_US_2 nway noprint;
MPRINT(CB_SUMMARY):   class Event;
MPRINT(CB_SUMMARY):   output out= SHUF_c_US_2;
MPRINT(CB_SUMMARY):   run;

NOTE: There were 841896 observations read from the data set WORK.HUF_C_US_2.
NOTE: The data set WORK.SHUF_C_US_2 has 10 observations and 16 variables.
NOTE: PROCEDURE MEANS used (Total process time):
      real time           0.55 seconds
      cpu time            0.28 seconds



NOTE: Table has been opened in browse mode.
ERROR: Asterisks are an indication of a format width problem.
ERROR: Asterisks are an indication of a format width problem.
ERROR: Asterisks are an indication of a format width problem.
ERROR: Asterisks are an indication of a format width problem.&lt;/CODE&gt;&lt;/PRE&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;By the way, I get the following NOTE and ERROR in the log&amp;nbsp;&lt;U&gt;&lt;STRONG&gt;only when I double-click the result dataset&amp;nbsp; to view. I mean to say that these NOTE and ERROR do not appear during the time the codes run.&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Dec 2018 12:31:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523359#M4599</guid>
      <dc:creator>d6k5d3</dc:creator>
      <dc:date>2018-12-24T12:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523364#M4602</link>
      <description>And thank you for the advice on NWAY. Loved it!</description>
      <pubDate>Mon, 24 Dec 2018 09:15:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523364#M4602</guid>
      <dc:creator>d6k5d3</dc:creator>
      <dc:date>2018-12-24T09:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523429#M4619</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/239423"&gt;@d6k5d3&lt;/a&gt; - Given your SAS program produces a log without warnings or errors I would say there is nothing inherently "wrong" with it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What SAS client interface are you using? SAS Windowing Environment (aka Display Manager), Enterprise Guide or SAS Studio? Does the dataset view window open OK and if so which columns display asterisks?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Dec 2018 20:23:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523429#M4619</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-12-24T20:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523432#M4620</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;By the way, I get the following NOTE and ERROR in the log&amp;nbsp;&lt;U&gt;&lt;STRONG&gt;only when I double-click the result dataset&amp;nbsp; to view. I mean to say that these NOTE and ERROR do not appear during the time the codes run.&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I think that has something to do with your view settings and preference then and nothing to do with your code. Review your settings and preferences and verify you haven't changed any of the defaults. Or tech support may be able to tell you. It would definitely help to mention facts like that from the beginning as well.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Dec 2018 20:49:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523432#M4620</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-12-24T20:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523447#M4622</link>
      <description>I use SAS Windowing Environment. Some Years and _Type_s are shown to have asterisks instead of actual values.</description>
      <pubDate>Tue, 25 Dec 2018 00:39:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523447#M4622</guid>
      <dc:creator>d6k5d3</dc:creator>
      <dc:date>2018-12-25T00:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523495#M4634</link>
      <description>&lt;P&gt;Are you working on a laptop? Have you made the column wider in the view or have you set any formats on the data?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Run a proc contents on the OUTPUT data set and show the formats. You can try making them bigger or removing them entirely to see if it helps as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC CONTENTS:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc contents data=YS&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Removing formats:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data YS&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;
    set YS&amp;amp;cur._c_&amp;amp;reg._&amp;amp;code.;

*removes all formats from numeric variables;
format _numeric_;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Dec 2018 19:28:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523495#M4634</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-12-25T19:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the output dataset opened in "browse mode"???</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523511#M4637</link>
      <description>Yes, I figured out. It was a 'length' issue. Thanks for all the input.</description>
      <pubDate>Wed, 26 Dec 2018 00:04:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-is-the-output-dataset-opened-in-quot-browse-mode-quot/m-p/523511#M4637</guid>
      <dc:creator>d6k5d3</dc:creator>
      <dc:date>2018-12-26T00:04:56Z</dc:date>
    </item>
  </channel>
</rss>

