<?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 Filtering a column while perfomimg merge for creating time series dataset in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Filtering-a-column-while-perfomimg-merge-for-creating-time/m-p/67444#M19287</link>
    <description>Hi, &lt;BR /&gt;
&lt;BR /&gt;
I have 27 different datasets for different months. My objective is to create a time series dataset such that I have data appnded on coloumns and not row wise. I have renamed same variables in these datasets with a time stamp such as &lt;BR /&gt;
&lt;BR /&gt;
abc_0108 (Jan Dataset)&lt;BR /&gt;
abc_0208 (Feb Datastet)&lt;BR /&gt;
abc_0308 (March dataset)&lt;BR /&gt;
&lt;BR /&gt;
What I am planning to use is &lt;BR /&gt;
&lt;BR /&gt;
data a;&lt;BR /&gt;
set b;&lt;BR /&gt;
merge a b c; &lt;BR /&gt;
by s;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
However there is a field called client which is present in all 27 dataset with the same name. This field takes 12 different values and my obejective is to perform merge on single values on client. &lt;BR /&gt;
&lt;BR /&gt;
Can anyone suggest a way so that i can filter client while merge and in best possible fashion since I am dealing with data which is in millions.&lt;BR /&gt;
Thanks</description>
    <pubDate>Tue, 30 Dec 2008 15:45:09 GMT</pubDate>
    <dc:creator>tejeshwar</dc:creator>
    <dc:date>2008-12-30T15:45:09Z</dc:date>
    <item>
      <title>Filtering a column while perfomimg merge for creating time series dataset</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Filtering-a-column-while-perfomimg-merge-for-creating-time/m-p/67444#M19287</link>
      <description>Hi, &lt;BR /&gt;
&lt;BR /&gt;
I have 27 different datasets for different months. My objective is to create a time series dataset such that I have data appnded on coloumns and not row wise. I have renamed same variables in these datasets with a time stamp such as &lt;BR /&gt;
&lt;BR /&gt;
abc_0108 (Jan Dataset)&lt;BR /&gt;
abc_0208 (Feb Datastet)&lt;BR /&gt;
abc_0308 (March dataset)&lt;BR /&gt;
&lt;BR /&gt;
What I am planning to use is &lt;BR /&gt;
&lt;BR /&gt;
data a;&lt;BR /&gt;
set b;&lt;BR /&gt;
merge a b c; &lt;BR /&gt;
by s;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
However there is a field called client which is present in all 27 dataset with the same name. This field takes 12 different values and my obejective is to perform merge on single values on client. &lt;BR /&gt;
&lt;BR /&gt;
Can anyone suggest a way so that i can filter client while merge and in best possible fashion since I am dealing with data which is in millions.&lt;BR /&gt;
Thanks</description>
      <pubDate>Tue, 30 Dec 2008 15:45:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Filtering-a-column-while-perfomimg-merge-for-creating-time/m-p/67444#M19287</guid>
      <dc:creator>tejeshwar</dc:creator>
      <dc:date>2008-12-30T15:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering a column while perfomimg merge for creating time series dataset</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Filtering-a-column-while-perfomimg-merge-for-creating-time/m-p/67445#M19288</link>
      <description>Could you be more specific about your client column? Pls give some examples of your 12 different values (which I assume exist for each client?).&lt;BR /&gt;
&lt;BR /&gt;
Without knowing these, I could only guess that you need to clean your client columns in prior to the merge.&lt;BR /&gt;
/Linus</description>
      <pubDate>Wed, 31 Dec 2008 08:03:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Filtering-a-column-while-perfomimg-merge-for-creating-time/m-p/67445#M19288</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2008-12-31T08:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering a column while perfomimg merge for creating time series dataset</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Filtering-a-column-while-perfomimg-merge-for-creating-time/m-p/67446#M19289</link>
      <description>The client field will have 12 different values such as &lt;BR /&gt;
&lt;BR /&gt;
Bigshoppe&lt;BR /&gt;
Shopperee&lt;BR /&gt;
Westcouper&lt;BR /&gt;
&lt;BR /&gt;
Now if I want the merge to happen only for Bigshoppe, is there a way I can do that while performing the merge?&lt;BR /&gt;
&lt;BR /&gt;
Thanks</description>
      <pubDate>Tue, 06 Jan 2009 06:30:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Filtering-a-column-while-perfomimg-merge-for-creating-time/m-p/67446#M19289</guid>
      <dc:creator>tejeshwar</dc:creator>
      <dc:date>2009-01-06T06:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering a column while perfomimg merge for creating time series dataset</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Filtering-a-column-while-perfomimg-merge-for-creating-time/m-p/67447#M19290</link>
      <description>Just add a WHERE statement.&lt;BR /&gt;
&lt;BR /&gt;
/Linus</description>
      <pubDate>Wed, 07 Jan 2009 09:09:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Filtering-a-column-while-perfomimg-merge-for-creating-time/m-p/67447#M19290</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2009-01-07T09:09:44Z</dc:date>
    </item>
  </channel>
</rss>

