<?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: How to write text by using variables in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-write-text-by-using-variables/m-p/681794#M24057</link>
    <description>Thank you very much, it really helped</description>
    <pubDate>Sat, 05 Sep 2020 10:02:44 GMT</pubDate>
    <dc:creator>Nini1</dc:creator>
    <dc:date>2020-09-05T10:02:44Z</dc:date>
    <item>
      <title>How to write text by using variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-write-text-by-using-variables/m-p/681769#M24054</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm new SAS user. I have such type of a problem. I have a data with individual identifier, number of days and payment. I want to create a new column for each individual in which there will be written a text something like this: Hello,&amp;nbsp;&amp;nbsp;you have 3 days of overdue and please pay 20$ asap for the first individual,&amp;nbsp;Hello,&amp;nbsp;&amp;nbsp;you have 6 days of overdue and please pay 34$ asap for the second individual and so on.&lt;/P&gt;&lt;P&gt;Could you please help me to solve this problem?&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;individual&lt;/TD&gt;&lt;TD&gt;overdue&lt;/TD&gt;&lt;TD&gt;payment&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;$&amp;nbsp;&amp;nbsp; 20.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;$&amp;nbsp;&amp;nbsp; 34.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;$&amp;nbsp;&amp;nbsp; 67.00&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Fri, 04 Sep 2020 23:16:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-write-text-by-using-variables/m-p/681769#M24054</guid>
      <dc:creator>Nini1</dc:creator>
      <dc:date>2020-09-04T23:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to write text by using variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-write-text-by-using-variables/m-p/681770#M24055</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input (individual	overdue	payment) ($);
cards;
1	3	 $20.00
2	6	 $34.00
3	2	 $67.00
;

data want;
 set have;
 descrip=catx(' ','Hello,  you have', overdue,'days of overdue and please pay',payment,'asap');
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 04 Sep 2020 23:23:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-write-text-by-using-variables/m-p/681770#M24055</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-09-04T23:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to write text by using variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-write-text-by-using-variables/m-p/681794#M24057</link>
      <description>Thank you very much, it really helped</description>
      <pubDate>Sat, 05 Sep 2020 10:02:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-write-text-by-using-variables/m-p/681794#M24057</guid>
      <dc:creator>Nini1</dc:creator>
      <dc:date>2020-09-05T10:02:44Z</dc:date>
    </item>
  </channel>
</rss>

