<?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: Data extraction with counts and sum with similar remarks as common in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664609#M36273</link>
    <description>can I write steps like using query builder...</description>
    <pubDate>Wed, 24 Jun 2020 11:24:17 GMT</pubDate>
    <dc:creator>Jprathap447</dc:creator>
    <dc:date>2020-06-24T11:24:17Z</dc:date>
    <item>
      <title>Data extraction with counts and sum with similar remarks as common</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664575#M36262</link>
      <description>&lt;P&gt;I have a data with some remarks field as common, I want to know the count of that data and the sum&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2020 07:50:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664575#M36262</guid>
      <dc:creator>Jprathap447</dc:creator>
      <dc:date>2020-06-24T07:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction with counts and sum with similar remarks as common</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664577#M36263</link>
      <description>&lt;P&gt;Hi and welcome to the communities!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please give us an example for your dataset, ideally in a data step with datalines (so we can easily recreate it for testing).&lt;/P&gt;
&lt;P&gt;Use the "little running man" button (right next to the one indicated) to post your code:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg"&gt;&lt;img src="https://communities.sas.com/skins/images/56FCD7D6C56FB1FD5B55044A32DA7AB8/responsive_peak/images/image_not_found.png" alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The one indicated is best for logs and text data (e.g. from CSV files).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And show us what you expect as a result. If you already tried code to solve your issue, post that also.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2020 07:59:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664577#M36263</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-06-24T07:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction with counts and sum with similar remarks as common</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664594#M36264</link>
      <description>&lt;P&gt;I want to know how many C type of apples and the count and sum of the amount... etc&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2020 09:53:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664594#M36264</guid>
      <dc:creator>Jprathap447</dc:creator>
      <dc:date>2020-06-24T09:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction with counts and sum with similar remarks as common</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664598#M36266</link>
      <description>&lt;P&gt;Do you think of something like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
infile '/folders/myfolders/datasas.csv' dlm=',' dsd truncover;
input date :mmddyy10. amount name $ type :$1.;
format date yymmddd10.;
run;

proc sql;
create table want as
  select
    name,
    type,
    count(name) as count,
    sum(amount) as amount
  from have
  group by name, type
;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Jun 2020 10:10:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664598#M36266</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-06-24T10:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction with counts and sum with similar remarks as common</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664601#M36267</link>
      <description>&lt;P&gt;Q1. I am using windows 10 and the datasas file is on my desktop "C:\Users\prathap\Desktop"; how to map it&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2020 10:41:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664601#M36267</guid>
      <dc:creator>Jprathap447</dc:creator>
      <dc:date>2020-06-24T10:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction with counts and sum with similar remarks as common</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664602#M36268</link>
      <description>&lt;P&gt;Do you have a licensed SAS installation, or University Edition?&lt;/P&gt;
&lt;P&gt;If licensed, locally on your desktop or on a server?&lt;/P&gt;
&lt;P&gt;If server, do you use SAS Studio or Enterprise Guide?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2020 10:54:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664602#M36268</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-06-24T10:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction with counts and sum with similar remarks as common</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664604#M36270</link>
      <description>Licensed SAS installation, on Server, using Enterprise Guide.</description>
      <pubDate>Wed, 24 Jun 2020 10:59:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664604#M36270</guid>
      <dc:creator>Jprathap447</dc:creator>
      <dc:date>2020-06-24T10:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction with counts and sum with similar remarks as common</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664605#M36271</link>
      <description>&lt;P&gt;Use the File Copy task in Enterprise Guide to copy the file to your server.&lt;/P&gt;
&lt;P&gt;Then you can run the code I used, only adapting the location of the csv file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2020 11:10:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664605#M36271</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-06-24T11:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction with counts and sum with similar remarks as common</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664608#M36272</link>
      <description>It is not showing .csv file, it is accepting only SAS database files while browsing to upload file to server.</description>
      <pubDate>Wed, 24 Jun 2020 11:22:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664608#M36272</guid>
      <dc:creator>Jprathap447</dc:creator>
      <dc:date>2020-06-24T11:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction with counts and sum with similar remarks as common</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664609#M36273</link>
      <description>can I write steps like using query builder...</description>
      <pubDate>Wed, 24 Jun 2020 11:24:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664609#M36273</guid>
      <dc:creator>Jprathap447</dc:creator>
      <dc:date>2020-06-24T11:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction with counts and sum with similar remarks as common</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664612#M36274</link>
      <description>&lt;P&gt;I am NOT talking about the dataset upload/download, I am talking about the &lt;A href="https://blogs.sas.com/content/sasdummy/2020/05/19/copy-files-in-sas-eg/" target="_blank" rel="noopener"&gt;COPY FILES TASK&lt;/A&gt;, which is part of the standard EG setup at least since version 7.13. This task can copy ANY file.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2020 11:36:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664612#M36274</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-06-24T11:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction with counts and sum with similar remarks as common</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664613#M36275</link>
      <description>I am using 4.3. Thanks for your support.</description>
      <pubDate>Wed, 24 Jun 2020 11:38:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664613#M36275</guid>
      <dc:creator>Jprathap447</dc:creator>
      <dc:date>2020-06-24T11:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction with counts and sum with similar remarks as common</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664618#M36276</link>
      <description>&lt;P&gt;If you like to live in the past, why do you use Windows 10 instead of XP, which is about as old?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Really, you should update to 7.15 or 8.2 ASAP, you're missing out on a tankerload of features.&lt;/P&gt;
&lt;P&gt;And the current version is always included in SAS licenses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Read the blog article,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4"&gt;@ChrisHemedinger&lt;/a&gt;&amp;nbsp;also provides the task as an add-on to earlier EG versions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Without the task, you can always use a SFTP client to upload data to your SAS server, or use a shared network resource that is available both on your desktop and server. In the end, the file has to be "visible" to your SAS session, so you can run my code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also use the import wizard of EG, but you need to supply the column names, types and formats yourself, since your csv file does not have a header line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2020 11:51:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664618#M36276</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-06-24T11:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: Data extraction with counts and sum with similar remarks as common</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664715#M36283</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/335096"&gt;@Jprathap447&lt;/a&gt;&amp;nbsp;-&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Welcome to the community and to the world of SAS.&amp;nbsp; The version of SAS Enterprise Guide that you're using is quite old, but you still might benefit &lt;A href="https://www.youtube.com/watch?v=IEY9iR_0IjY" target="_self"&gt;from this tutorial&lt;/A&gt;.&amp;nbsp; It's 2+ hours and covers what you need to know about working within the environment, and completing basic tasks like querying and summarizing data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FIEY9iR_0IjY%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DIEY9iR_0IjY&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FIEY9iR_0IjY%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="200" height="112" scrolling="no" title="SAS Tutorial | Getting Started with SAS Enterprise Guide (Extended Version)" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2020 17:12:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Data-extraction-with-counts-and-sum-with-similar-remarks-as/m-p/664715#M36283</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2020-06-24T17:12:31Z</dc:date>
    </item>
  </channel>
</rss>

