<?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: Simple Excel chart not able to develop in SAS Visual Analytics in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250343#M3370</link>
    <description>&lt;P&gt;For convenience, here is the graph from Soumya's spreadsheet:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/1901iF85EFEB9BBE13069/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="bar.png" title="bar.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The bar chart has 3 measures, a group variable, but no category variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyone have a suggestion of how this can be created in VA?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Sam&lt;/P&gt;</description>
    <pubDate>Tue, 16 Feb 2016 14:59:51 GMT</pubDate>
    <dc:creator>Sam_SAS</dc:creator>
    <dc:date>2016-02-16T14:59:51Z</dc:date>
    <item>
      <title>Simple Excel chart not able to develop in SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250298#M3369</link>
      <description>&lt;P&gt;Hi Everybody&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create a simple Excel Bar chart in SAS Visual Analytics. I have to make year on year comparison for the values of different kinds of measures in a bar graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have attached the excel graph with the data.&lt;/P&gt;&lt;P&gt;It may be very simple but its urgent.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Soumya Sen&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2016 12:34:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250298#M3369</guid>
      <dc:creator>soumyasen</dc:creator>
      <dc:date>2016-02-16T12:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Excel chart not able to develop in SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250343#M3370</link>
      <description>&lt;P&gt;For convenience, here is the graph from Soumya's spreadsheet:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/1901iF85EFEB9BBE13069/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="bar.png" title="bar.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The bar chart has 3 measures, a group variable, but no category variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyone have a suggestion of how this can be created in VA?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Sam&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2016 14:59:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250343#M3370</guid>
      <dc:creator>Sam_SAS</dc:creator>
      <dc:date>2016-02-16T14:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Excel chart not able to develop in SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250367#M3372</link>
      <description>&lt;P&gt;Hi Soumya,&lt;/P&gt;&lt;P&gt;Its possible while making a new calculated field per year.&amp;nbsp; I did cut off the left axis...&lt;/P&gt;&lt;P&gt;&lt;IMG title="16-02-2016 17-03-38.png" alt="16-02-2016 17-03-38.png" src="https://communities.sas.com/t5/image/serverpage/image-id/1902iBB415789056CA53C/image-size/medium?v=mpbl-1&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;&lt;P&gt;Use the following code per year (F.Year in our case)&lt;/P&gt;&lt;P&gt;IF ( 'F.Year.'n = Year(DatePart(Now())) )&lt;BR /&gt;RETURN 'Sal.Val.€.'n&lt;BR /&gt;ELSE 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And this one for the last year.&lt;/P&gt;&lt;P&gt;IF ( 'F.Year.'n = ( Year(DatePart(Now())) - 1 ) )&lt;BR /&gt;RETURN 'Sal.Val.€.'n&lt;BR /&gt;ELSE 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Drag both variables into the bargraph and magic happens....&lt;/P&gt;&lt;P&gt;Greetings&amp;nbsp; Peter&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>Tue, 16 Feb 2016 16:09:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250367#M3372</guid>
      <dc:creator>PeterWijers</dc:creator>
      <dc:date>2016-02-16T16:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Excel chart not able to develop in SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250532#M3379</link>
      <description>&lt;P&gt;I have developed the following variables:&lt;/P&gt;&lt;P&gt;My variable is named &lt;STRONG&gt;‘Year’ so used &lt;/STRONG&gt;Year('Year'n): so dint get confused on that.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;For measure variable &lt;STRONG&gt;loss&lt;/STRONG&gt; and for &lt;STRONG&gt;2015&lt;/STRONG&gt; I have created a new variable called FY2015_loss&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;IF ( Year('Year'n) = ( Year(DatePart(Now())) - 1 ) )&lt;/P&gt;&lt;P&gt;RETURN 'loss'n&lt;/P&gt;&lt;P&gt;ELSE 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;For measure variable &lt;STRONG&gt;loss&lt;/STRONG&gt; and for &lt;STRONG&gt;2016&lt;/STRONG&gt; I have created a new variable called FY2015_loss&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;IF ( Year('Year'n) = Year(DatePart(Now())) )&lt;/P&gt;&lt;P&gt;RETURN 'loss'n&lt;/P&gt;&lt;P&gt;ELSE 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;For measure variable &lt;STRONG&gt;revenue&lt;/STRONG&gt; and for &lt;STRONG&gt;2015&lt;/STRONG&gt; I have created a new variable called FY2015_revenue&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;IF ( Year('Year'n) = Year(DatePart(Now())) )&lt;/P&gt;&lt;P&gt;RETURN 'loss'n&lt;/P&gt;&lt;P&gt;ELSE 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;For measure variable &lt;STRONG&gt;revenue&lt;/STRONG&gt; and for &lt;STRONG&gt;2016&lt;/STRONG&gt; I have created a new variable called FY2016_revenue&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;IF ( Year('Year'n) = Year(DatePart(Now())) )&lt;/P&gt;&lt;P&gt;RETURN 'loss'n&lt;/P&gt;&lt;P&gt;ELSE 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But when I am assigning the variables the visual is not getting generated.&lt;/P&gt;&lt;P&gt;Please find attached in the last page what is the error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Feb 2016 07:45:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250532#M3379</guid>
      <dc:creator>soumyasen</dc:creator>
      <dc:date>2016-02-17T07:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Excel chart not able to develop in SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250533#M3380</link>
      <description>&lt;P&gt;Also one thing how did you cut the left axis&lt;/P&gt;</description>
      <pubDate>Wed, 17 Feb 2016 07:47:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250533#M3380</guid>
      <dc:creator>soumyasen</dc:creator>
      <dc:date>2016-02-17T07:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Excel chart not able to develop in SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250679#M3382</link>
      <description>&lt;P&gt;You have not used a category yet, and you must use it to have the bars to show.&lt;BR /&gt;Thats what i see in your screen print, the rest seems to be ok.&lt;BR /&gt;Greetings&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2016 05:54:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250679#M3382</guid>
      <dc:creator>PeterWijers</dc:creator>
      <dc:date>2016-02-19T05:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Excel chart not able to develop in SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250680#M3383</link>
      <description>The axes have been cut off for this screenprint.&lt;BR /&gt;Not that VA could do this .&lt;BR /&gt;Greetings</description>
      <pubDate>Wed, 17 Feb 2016 19:20:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/250680#M3383</guid>
      <dc:creator>PeterWijers</dc:creator>
      <dc:date>2016-02-17T19:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Excel chart not able to develop in SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/251077#M3398</link>
      <description>&lt;P&gt;Thanks but in the excel we are not using any category .&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2016 11:28:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/251077#M3398</guid>
      <dc:creator>soumyasen</dc:creator>
      <dc:date>2016-02-19T11:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Excel chart not able to develop in SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/251079#M3399</link>
      <description>&lt;P&gt;I am very confused now.&lt;/P&gt;&lt;P&gt;Your categories are &amp;nbsp;Expence, Debt and CostOfDebt.....&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2016 11:32:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/251079#M3399</guid>
      <dc:creator>PeterWijers</dc:creator>
      <dc:date>2016-02-19T11:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Excel chart not able to develop in SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/251101#M3401</link>
      <description>&lt;P&gt;But Thanks a lot.&lt;/P&gt;&lt;P&gt;Using a category I can arrive at that.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2016 12:57:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/251101#M3401</guid>
      <dc:creator>soumyasen</dc:creator>
      <dc:date>2016-02-19T12:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Excel chart not able to develop in SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/251102#M3402</link>
      <description>&lt;P&gt;One thing . My Measure values are&amp;nbsp;under Expense, Debt . They are not categories /neither they appear under category list in SAS VA&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2016 12:59:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/251102#M3402</guid>
      <dc:creator>soumyasen</dc:creator>
      <dc:date>2016-02-19T12:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Excel chart not able to develop in SAS Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/251104#M3403</link>
      <description>&lt;P&gt;Sorry to confuse you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my excel sheet you will find Year as my category.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And Expense ,Debt and Cost of Debt as the measure variables. So they dont appear under the category list.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Soumya Sen&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2016 13:01:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Simple-Excel-chart-not-able-to-develop-in-SAS-Visual-Analytics/m-p/251104#M3403</guid>
      <dc:creator>soumyasen</dc:creator>
      <dc:date>2016-02-19T13:01:39Z</dc:date>
    </item>
  </channel>
</rss>

