<?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 how to convert number into description of the number in text form in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/how-to-convert-number-into-description-of-the-number-in-text/m-p/621174#M19599</link>
    <description>&lt;P&gt;dear all&lt;/P&gt;&lt;P&gt;greetings of the day&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have to convert number into description of the number in text form by using SAS code&amp;nbsp;&lt;/P&gt;&lt;P&gt;for example,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;number&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;description&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;one&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;two&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;TD&gt;fifty&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;hundred&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;</description>
    <pubDate>Thu, 30 Jan 2020 15:28:32 GMT</pubDate>
    <dc:creator>srikanthyadav44</dc:creator>
    <dc:date>2020-01-30T15:28:32Z</dc:date>
    <item>
      <title>how to convert number into description of the number in text form</title>
      <link>https://communities.sas.com/t5/New-SAS-User/how-to-convert-number-into-description-of-the-number-in-text/m-p/621174#M19599</link>
      <description>&lt;P&gt;dear all&lt;/P&gt;&lt;P&gt;greetings of the day&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have to convert number into description of the number in text form by using SAS code&amp;nbsp;&lt;/P&gt;&lt;P&gt;for example,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;number&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;description&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;one&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;two&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;TD&gt;fifty&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;hundred&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 15:28:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/how-to-convert-number-into-description-of-the-number-in-text/m-p/621174#M19599</guid>
      <dc:creator>srikanthyadav44</dc:creator>
      <dc:date>2020-01-30T15:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert number into description of the number in text form</title>
      <link>https://communities.sas.com/t5/New-SAS-User/how-to-convert-number-into-description-of-the-number-in-text/m-p/621175#M19600</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data have;
input number;* 	description;
cards;
1	one
2	two 
;

data want;
set have;
description=put(number,words100.);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 30 Jan 2020 15:32:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/how-to-convert-number-into-description-of-the-number-in-text/m-p/621175#M19600</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-01-30T15:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert number into description of the number in text form</title>
      <link>https://communities.sas.com/t5/New-SAS-User/how-to-convert-number-into-description-of-the-number-in-text/m-p/621178#M19602</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/280123"&gt;@srikanthyadav44&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can try this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NB:&amp;nbsp;&lt;SPAN&gt;The WORDS&lt;/SPAN&gt;&lt;SPAN class="emph"&gt;w&lt;/SPAN&gt;&lt;SPAN&gt;. format converts numeric values to their equivalent in English words.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  do number=1 to 100;
    description=put(number,words100.);
    output;
  end;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 30 Jan 2020 15:34:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/how-to-convert-number-into-description-of-the-number-in-text/m-p/621178#M19602</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-01-30T15:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert number into description of the number in text form</title>
      <link>https://communities.sas.com/t5/New-SAS-User/how-to-convert-number-into-description-of-the-number-in-text/m-p/621276#M19608</link>
      <description>&lt;P&gt;See Maxim 8. There Is a &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=leforinforref&amp;amp;docsetTarget=n0vtywqiymyd68n1qxn8uusvi0a7.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;Format&lt;/A&gt; for It.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 19:04:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/how-to-convert-number-into-description-of-the-number-in-text/m-p/621276#M19608</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-01-30T19:04:47Z</dc:date>
    </item>
  </channel>
</rss>

