<?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: SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS/m-p/394619#M277947</link>
    <description>&lt;P&gt;thank you...Rw9&lt;BR /&gt;&lt;BR /&gt;how can i convert the time eg...09:30&lt;BR /&gt;and this time will be concat to date . if this is correct time format to concat please explain.&lt;/P&gt;</description>
    <pubDate>Mon, 11 Sep 2017 10:22:08 GMT</pubDate>
    <dc:creator>Aswanth</dc:creator>
    <dc:date>2017-09-11T10:22:08Z</dc:date>
    <item>
      <title>SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS/m-p/394592#M277943</link>
      <description>&lt;P&gt;i want to seperate the date and time and finally i want only time format how can i do..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;eg;&amp;nbsp; &amp;nbsp;08SEP09:15:50:02&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 09:07:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS/m-p/394592#M277943</guid>
      <dc:creator>Aswanth</dc:creator>
      <dc:date>2017-09-11T09:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS/m-p/394598#M277944</link>
      <description>&lt;P&gt;This should give you what you want&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;

	format datebit date9. timebit time.;
	dtime='08SEP09:15:50:02'dt;
	datebit=datepart(dtime);
	timebit=timepart(dtime);
	
	put datebit=;
	put timebit=;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 Sep 2017 09:33:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS/m-p/394598#M277944</guid>
      <dc:creator>ChrisBrooks</dc:creator>
      <dc:date>2017-09-11T09:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS/m-p/394600#M277945</link>
      <description>&lt;P&gt;And what format is the data in? &amp;nbsp;Is it datetime or text? &amp;nbsp;This is where providing test data in the form of a datastep and what the required output should look like really helps. &amp;nbsp;If its datetime then use the datepart/timepart functions. &amp;nbsp;If its text, then use substr and input.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 09:43:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS/m-p/394600#M277945</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-09-11T09:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS/m-p/394618#M277946</link>
      <description>&lt;P&gt;thank you...chrisbook&lt;BR /&gt;&lt;BR /&gt;how can i convert the time eg...09:30&lt;BR /&gt;and this time will be concat to date . if this is correct time format to concat please explain.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 10:21:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS/m-p/394618#M277946</guid>
      <dc:creator>Aswanth</dc:creator>
      <dc:date>2017-09-11T10:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS/m-p/394619#M277947</link>
      <description>&lt;P&gt;thank you...Rw9&lt;BR /&gt;&lt;BR /&gt;how can i convert the time eg...09:30&lt;BR /&gt;and this time will be concat to date . if this is correct time format to concat please explain.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 10:22:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS/m-p/394619#M277947</guid>
      <dc:creator>Aswanth</dc:creator>
      <dc:date>2017-09-11T10:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS/m-p/394621#M277948</link>
      <description>&lt;P&gt;I am sorry, I have no idea what you are talking about. &amp;nbsp;Have a look at some of the other questions posted here for guidance on how to ask a question which provides all the information needed to give an answer, for example:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/Base-SAS-Programming/Getting-max-value-by-group-complex-table/m-p/394613" target="_blank"&gt;https://communities.sas.com/t5/Base-SAS-Programming/Getting-max-value-by-group-complex-table/m-p/394613&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Note the test data datastep and what the output should look like.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 10:24:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS/m-p/394621#M277948</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-09-11T10:24:09Z</dc:date>
    </item>
  </channel>
</rss>

