<?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: Is it possible to modify the &amp;quot;View in Excel&amp;quot; context menu command output formatting? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Is-it-possible-to-modify-the-quot-View-in-Excel-quot-context/m-p/771154#M244674</link>
    <description>&lt;P&gt;You can customize how Explorer works in Display Manager.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 462px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/64228iE13C38F527A1AA1B/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here is what the current entry that you are using looks like:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 738px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/64227i30CBB9CA44B9373B/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Looks like it is currently calling some SCL program that SAS supplied.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;AFA C=SASHELP.EXPLORER.EXCEL_TABLE_OPEN.SCL LIBRARY='%8b' TABLE='%32b';&lt;/PRE&gt;
&lt;P&gt;You probably cannot change that program.&amp;nbsp; It is not clear if it has a option to NOT use the labels.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But you could always either associate this menu item with a different command or make a new menu item that does what you want.&lt;/P&gt;</description>
    <pubDate>Wed, 29 Sep 2021 15:08:16 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2021-09-29T15:08:16Z</dc:date>
    <item>
      <title>Is it possible to modify the "View in Excel" context menu command output formatting?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-it-possible-to-modify-the-quot-View-in-Excel-quot-context/m-p/750851#M236249</link>
      <description>&lt;P&gt;I frequently use the "View in Excel" right click context menu command to view files in the SAS Windows UI but would like to get rid of titles and column labels so that i can see the variable names instead of the labels.&amp;nbsp; I can eliminate the titles by submitting a title; prior to the view command but have not been able to eliminate the generation of labels.&amp;nbsp; Is there any way to modify the process to do this short of modifying the dataset?&amp;nbsp; Another oddity is that when labels are generated they are in multiple rows rather than in a single row.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2021 16:03:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-it-possible-to-modify-the-quot-View-in-Excel-quot-context/m-p/750851#M236249</guid>
      <dc:creator>eshupp</dc:creator>
      <dc:date>2021-06-28T16:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to modify the "View in Excel" context menu command output formatting?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-it-possible-to-modify-the-quot-View-in-Excel-quot-context/m-p/750853#M236251</link>
      <description>&lt;P&gt;I don't know if it's possible to change the GUI command but you can control all of that if you do it via code rather than the GUI.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use either ODS EXCEL or PROC EXPORT - EXPORT Is likely closer to what you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc export data=sashelp.class outfile='/home/fkhurshed/Class.xlsx' dbms=xlsx replace; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/29730"&gt;@eshupp&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I frequently use the "View in Excel" right click context menu command to view files in the SAS Windows UI but would like to get rid of titles and column labels so that i can see the variable names instead of the labels.&amp;nbsp; I can eliminate the titles by submitting a title; prior to the view command but have not been able to eliminate the generation of labels.&amp;nbsp; Is there any way to modify the process to do this short of modifying the dataset?&amp;nbsp; Another oddity is that when labels are generated they are in multiple rows rather than in a single row.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2021 16:08:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-it-possible-to-modify-the-quot-View-in-Excel-quot-context/m-p/750853#M236251</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-06-28T16:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to modify the "View in Excel" context menu command output formatting?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-it-possible-to-modify-the-quot-View-in-Excel-quot-context/m-p/751705#M236673</link>
      <description>&lt;P&gt;Thanks for the alternative suggestion.&amp;nbsp; After some additional thought I determined that if I submit the following before doing a view the output is formatted the way I want:&lt;/P&gt;
&lt;P&gt;TITLE;&lt;/P&gt;
&lt;P&gt;OPTIONS NOLABEL;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is an accep&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2021 12:01:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-it-possible-to-modify-the-quot-View-in-Excel-quot-context/m-p/751705#M236673</guid>
      <dc:creator>eshupp</dc:creator>
      <dc:date>2021-07-02T12:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to modify the "View in Excel" context menu command output formatting?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-it-possible-to-modify-the-quot-View-in-Excel-quot-context/m-p/771147#M244673</link>
      <description>&lt;P&gt;I solved my problem by submitting OPTIONS NOTITLE; TITLE; before&amp;nbsp; performing "View in Excel".&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 14:31:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-it-possible-to-modify-the-quot-View-in-Excel-quot-context/m-p/771147#M244673</guid>
      <dc:creator>eshupp</dc:creator>
      <dc:date>2021-09-29T14:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to modify the "View in Excel" context menu command output formatting?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-it-possible-to-modify-the-quot-View-in-Excel-quot-context/m-p/771154#M244674</link>
      <description>&lt;P&gt;You can customize how Explorer works in Display Manager.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 462px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/64228iE13C38F527A1AA1B/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here is what the current entry that you are using looks like:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 738px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/64227i30CBB9CA44B9373B/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Looks like it is currently calling some SCL program that SAS supplied.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;AFA C=SASHELP.EXPLORER.EXCEL_TABLE_OPEN.SCL LIBRARY='%8b' TABLE='%32b';&lt;/PRE&gt;
&lt;P&gt;You probably cannot change that program.&amp;nbsp; It is not clear if it has a option to NOT use the labels.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But you could always either associate this menu item with a different command or make a new menu item that does what you want.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 15:08:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-it-possible-to-modify-the-quot-View-in-Excel-quot-context/m-p/771154#M244674</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-09-29T15:08:16Z</dc:date>
    </item>
  </channel>
</rss>

