<?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 insert value in a table with prompt in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/insert-value-in-a-table-with-prompt/m-p/451836#M29172</link>
    <description>&lt;P&gt;I would like the following to happen:&lt;/P&gt;&lt;P&gt;When I run my SAS project, I want to see a pop-up where I can fill in a reference date, a start date and an end date. And I want those three values to occur in a table like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; REF&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BEGIN&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;END&lt;/P&gt;&lt;P&gt;1 01/02/2018&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 02/02/2018&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20/02/2018&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made three tables with all dates between 1996 and today on which I used my prompt but I don't think this the right way...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&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>Fri, 06 Apr 2018 11:52:01 GMT</pubDate>
    <dc:creator>Davoz7</dc:creator>
    <dc:date>2018-04-06T11:52:01Z</dc:date>
    <item>
      <title>insert value in a table with prompt</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/insert-value-in-a-table-with-prompt/m-p/451836#M29172</link>
      <description>&lt;P&gt;I would like the following to happen:&lt;/P&gt;&lt;P&gt;When I run my SAS project, I want to see a pop-up where I can fill in a reference date, a start date and an end date. And I want those three values to occur in a table like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; REF&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BEGIN&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;END&lt;/P&gt;&lt;P&gt;1 01/02/2018&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 02/02/2018&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20/02/2018&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made three tables with all dates between 1996 and today on which I used my prompt but I don't think this the right way...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&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>Fri, 06 Apr 2018 11:52:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/insert-value-in-a-table-with-prompt/m-p/451836#M29172</guid>
      <dc:creator>Davoz7</dc:creator>
      <dc:date>2018-04-06T11:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: insert value in a table with prompt</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/insert-value-in-a-table-with-prompt/m-p/451840#M29173</link>
      <description>&lt;P&gt;Create the three prompts as data prompts, and use a data step like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
ref = "&amp;amp;ref"d;
begin = "&amp;amp;begin"d;
end = "&amp;amp;end"d;
format ref begin end ddmmyy10.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The prompts need to be named ref, begin and end, respectively.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Apr 2018 12:07:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/insert-value-in-a-table-with-prompt/m-p/451840#M29173</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-04-06T12:07:49Z</dc:date>
    </item>
  </channel>
</rss>

