<?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: Indian Comma Format in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433403#M9302</link>
    <description>Have a look at this question: &lt;A href="https://communities.sas.com/t5/SAS-Procedures/Indian-Comma-Format/td-p/198705" target="_blank"&gt;https://communities.sas.com/t5/SAS-Procedures/Indian-Comma-Format/td-p/198705&lt;/A&gt;</description>
    <pubDate>Fri, 02 Feb 2018 06:40:06 GMT</pubDate>
    <dc:creator>Criptic</dc:creator>
    <dc:date>2018-02-02T06:40:06Z</dc:date>
    <item>
      <title>Indian Comma Format</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433402#M9301</link>
      <description>&lt;P&gt;&lt;FONT size="5" color="#99CC00"&gt;&lt;STRONG&gt;How to get Indian comma format in VA. It would be really great if you could just help me with this! Kindly update, ASAP.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 06:36:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433402#M9301</guid>
      <dc:creator>nitya411</dc:creator>
      <dc:date>2018-02-02T06:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: Indian Comma Format</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433403#M9302</link>
      <description>Have a look at this question: &lt;A href="https://communities.sas.com/t5/SAS-Procedures/Indian-Comma-Format/td-p/198705" target="_blank"&gt;https://communities.sas.com/t5/SAS-Procedures/Indian-Comma-Format/td-p/198705&lt;/A&gt;</description>
      <pubDate>Fri, 02 Feb 2018 06:40:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433403#M9302</guid>
      <dc:creator>Criptic</dc:creator>
      <dc:date>2018-02-02T06:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Indian Comma Format</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433404#M9303</link>
      <description>I tried all the possible ways mentioned on the link you shared. Did not work.</description>
      <pubDate>Fri, 02 Feb 2018 06:41:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433404#M9303</guid>
      <dc:creator>nitya411</dc:creator>
      <dc:date>2018-02-02T06:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Indian Comma Format</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433411#M9305</link>
      <description>&lt;P&gt;You can make use of user-defined formats in SAS VA. This includes PICTURE-type formats as long as they are not date or time related:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/56/402.html" target="_blank"&gt;http://support.sas.com/kb/56/402.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since the Indian comma format is not date-related you should be OK.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The user-defined format has to be created outside of VA in 'normal' SAS:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format library = library;
  picture MyIndianFormat
  low-high='99,99,99,999.99';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;then the SAS FORMATS catalog where the format (in the LIBRARY folder in a file called formats.sas7bcat) is stored has to be loaded into a particular SAS VA folder as explained here:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/vaag/69958/HTML/default/viewer.htm#n1smzfeuhcmcb5n1qfoxg1t2o83k.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/vaag/69958/HTML/default/viewer.htm#n1smzfeuhcmcb5n1qfoxg1t2o83k.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you have added the FORMATS catalog, you then apply it to the required columns in your SAS table using a FORMAT statement BEFORE you load it into VA:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data MyVATable;
  set MySASTable;
  format MySASNumber MyIndianFormat.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;After loading this table into your LASR library you should be able to see the format displayed in the Report Designer Data Pane beside the column MySASNumber and it should show in any reports using this column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 07:26:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433411#M9305</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-02-02T07:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: Indian Comma Format</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433421#M9306</link>
      <description>right! now this make sense.&lt;BR /&gt;proc format;&lt;BR /&gt;picture indianc&lt;BR /&gt;low-high='0,00,00,00,00,00,00,000';&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;data new;&lt;BR /&gt;a=100;output;&lt;BR /&gt;a=1000;output;&lt;BR /&gt;a=10000;output;&lt;BR /&gt;a=100000;output;&lt;BR /&gt;a=1000000;output;&lt;BR /&gt;a=10000000;output;&lt;BR /&gt;a=100000000;output;&lt;BR /&gt;a=1000000000;output;&lt;BR /&gt;a=10000000000;output;&lt;BR /&gt;format a indianc.;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc print data=new;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;data CustomerOrdersEE;&lt;BR /&gt;set indianc;&lt;BR /&gt;format Profit MyIndianFormat.;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;this is the code I tried. How do i load LASR tables in VA. How to export this code from SAS to VA?</description>
      <pubDate>Fri, 02 Feb 2018 08:31:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433421#M9306</guid>
      <dc:creator>nitya411</dc:creator>
      <dc:date>2018-02-02T08:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Indian Comma Format</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433426#M9307</link>
      <description>Okay so the code I'm writing is in VMware, and I cannot load the data or table in VA coz that is not possible. Is there any other way to set Indian comma format?</description>
      <pubDate>Fri, 02 Feb 2018 08:44:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433426#M9307</guid>
      <dc:creator>nitya411</dc:creator>
      <dc:date>2018-02-02T08:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: Indian Comma Format</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433429#M9308</link>
      <description>&lt;P&gt;Are you new to SAS VA? Its appears you missing many of the basics on how VA works. If this is the case then I would highly recommend you do some SAS VA training, like the courses provided by SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also ANY SAS table can be loaded into VA. It doesn't matter if you are creating it on a VMware computer or not.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The instructions I've provided are correct because I've used them myself. If there are any steps that require more explanation then please say.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 08:54:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433429#M9308</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-02-02T08:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: Indian Comma Format</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433439#M9309</link>
      <description>Yes, I'm new to VA and I'm learning VA on my own. The code I mentioned above works perfect. In my computer, Internet is not accessible in VMware, hence, I'm using VA in Desktop(out of image) So the file i'm exporting and saving is being saved in VMware desktop. I don't know how to load tables in VA.</description>
      <pubDate>Fri, 02 Feb 2018 09:36:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433439#M9309</guid>
      <dc:creator>nitya411</dc:creator>
      <dc:date>2018-02-02T09:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Indian Comma Format</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433445#M9310</link>
      <description>&lt;P&gt;Please find the screenshots of VMware and V&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18269i69FBFCE52C83BCB3/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.PNG" alt="Capture2.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18270iC268A78BFBBAA0FE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture3.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18271i0BADA54FDC5AE0EB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture3.PNG" alt="Capture3.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 09:49:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433445#M9310</guid>
      <dc:creator>nitya411</dc:creator>
      <dc:date>2018-02-02T09:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Indian Comma Format</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433760#M9321</link>
      <description>&lt;P&gt;Well the first step to loading a SAS dataset into SAS VA is to create a permanent version of the dataset:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname MySASLib 'c:\MyFolder';

data MySASLib.New;
  set new;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Once you have done this, open VA and go to the Import Data window as in your screenshot and choose Local - SAS Data Set. Navigate to your c:\MyFolder and select new.sas7bdat then select OK. VA should then load your table. If you then go into Report Designer you should then be able to choose NEW as a data source.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 06:11:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/433760#M9321</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-02-03T06:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: Indian Comma Format</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/434069#M9324</link>
      <description>&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;So, I saved my file in VMWare C drive, and i selected import option in VA import&amp;gt;&amp;gt; sas dataset&amp;gt;&amp;gt; C:. the program i created in VMwarw is not visible out of vmware. Thats why i cannot import the fil&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18322i00A93A2FBCD1F5F6/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture1.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18321iB8B18BB9A19A823C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture1.PNG" alt="Capture1.PNG" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 06:57:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/434069#M9324</guid>
      <dc:creator>nitya411</dc:creator>
      <dc:date>2018-02-05T06:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: Indian Comma Format</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/434383#M9344</link>
      <description>&lt;P&gt;I suggest you talk to your IT admin and explain that you need a folder location that is accessible from both VMware and SAS VA.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not familiar with desktop VMware but there must be a way of sharing folders.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your other option is to open a track with SAS Tech Support. They may be able to help more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 21:02:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/434383#M9344</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-02-05T21:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: Indian Comma Format</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/434782#M9354</link>
      <description>Thankyou so much. I'll do that</description>
      <pubDate>Wed, 07 Feb 2018 08:11:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Indian-Comma-Format/m-p/434782#M9354</guid>
      <dc:creator>nitya411</dc:creator>
      <dc:date>2018-02-07T08:11:57Z</dc:date>
    </item>
  </channel>
</rss>

