<?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: How to directly edit files in EG in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972612#M46110</link>
    <description>Can't see how to undo my solution choice. Is that possible?</description>
    <pubDate>Thu, 14 Aug 2025 10:34:01 GMT</pubDate>
    <dc:creator>BruceBrad</dc:creator>
    <dc:date>2025-08-14T10:34:01Z</dc:date>
    <item>
      <title>How to directly edit files in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972551#M46103</link>
      <description>&lt;P&gt;I have a file open from the library browser in enterprise guide. I want to edit the file in the browser. For example, to change a format on a variable temporarily to inspect the data. How do I switch to edit mode to do this?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 11:25:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972551#M46103</guid>
      <dc:creator>BruceBrad</dc:creator>
      <dc:date>2025-08-13T11:25:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to directly edit files in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972553#M46104</link>
      <description>&lt;P&gt;In contrary to SAS Display Manager SAS EG is just a "flat" client that allows to run code and preview data, but not edit datasets directly.&amp;nbsp; Such edits, which were possible in DMS ViewTable tool, are not easy when you have EG on your local machine and the data on the other side of word on a remote server.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I'd do is to use for example proc print with format statement, plus OBS= data set option to limit printed observations, e.g.,&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=sashelp.class(obs=5);
  format Height yymmdd10.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to get:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yabwon_0-1755085524861.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/108985i72E1FC3BA5506884/image-size/medium?v=v2&amp;amp;px=400" role="button" title="yabwon_0-1755085524861.png" alt="yabwon_0-1755085524861.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 11:45:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972553#M46104</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2025-08-13T11:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to directly edit files in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972557#M46105</link>
      <description>OK, so not possible. (Of course, many of us are using EG with the data on the same machine, but I understand the general principle).</description>
      <pubDate>Wed, 13 Aug 2025 12:00:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972557#M46105</guid>
      <dc:creator>BruceBrad</dc:creator>
      <dc:date>2025-08-13T12:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to directly edit files in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972561#M46106</link>
      <description>&lt;P&gt;You can edit data in EG. To trigger Edit mode, simply press a key when the cursor is focused on a value in the data grid view. If you have write access to the library, you will be prompted to go into Edit mode.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can then change values, and right-click on a column to change its properties. This can include Formats and Informats.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="editview.jpg" style="width: 744px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/108986i537C4CF784A91239/image-dimensions/744x387?v=v2" width="744" height="387" role="button" title="editview.jpg" alt="editview.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All changes that you make are i&lt;STRONG&gt;mmediate and permanent&lt;/STRONG&gt;, so if you just want a view with another format, it might not be what you want to do.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to apply a new format without creating a copy of the data, you could create a VIEW:&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;data class / view=class;
 set sashelp.class;
 format Height dollar8.;
run;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 13:16:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972561#M46106</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2025-08-13T13:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to directly edit files in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972564#M46107</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4"&gt;@ChrisHemedinger&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hey Chris, Thank you! I Didn't know that!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 14:00:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972564#M46107</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2025-08-13T14:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to directly edit files in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972594#M46108</link>
      <description>This is perfect. I'm doing this when testing the program, and will re-create the datafile at the end.</description>
      <pubDate>Wed, 13 Aug 2025 23:53:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972594#M46108</guid>
      <dc:creator>BruceBrad</dc:creator>
      <dc:date>2025-08-13T23:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to directly edit files in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972608#M46109</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12505"&gt;@BruceBrad&lt;/a&gt;&amp;nbsp;since my answer is clearly wrong, maybe you can mark &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4"&gt;@ChrisHemedinger&lt;/a&gt;&amp;nbsp;answer as the solution?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 08:26:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972608#M46109</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2025-08-14T08:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to directly edit files in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972612#M46110</link>
      <description>Can't see how to undo my solution choice. Is that possible?</description>
      <pubDate>Thu, 14 Aug 2025 10:34:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972612#M46110</guid>
      <dc:creator>BruceBrad</dc:creator>
      <dc:date>2025-08-14T10:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to directly edit files in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972618#M46111</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12505"&gt;@BruceBrad&lt;/a&gt;&amp;nbsp;- no, there is no Undo with this feature. So my advice is to use it only on temp data (for experimenting) or in a situation where you need to make a permanent change.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since there is no code generated as part of this operation, it's not repeatable in the same way a code step or task step would be in your flow.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 12:37:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972618#M46111</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2025-08-14T12:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to directly edit files in EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972651#M46113</link>
      <description>&lt;P&gt;Looks like the moderator has changed the solution to the correct one. Thanks all.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Aug 2025 00:18:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-directly-edit-files-in-EG/m-p/972651#M46113</guid>
      <dc:creator>BruceBrad</dc:creator>
      <dc:date>2025-08-15T00:18:34Z</dc:date>
    </item>
  </channel>
</rss>

