<?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: Spaces in proc odstext in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/774167#M246007</link>
    <description>&lt;P&gt;Are you sending a pure-text mail or html?&lt;/P&gt;</description>
    <pubDate>Thu, 14 Oct 2021 10:20:10 GMT</pubDate>
    <dc:creator>andreas_lds</dc:creator>
    <dc:date>2021-10-14T10:20:10Z</dc:date>
    <item>
      <title>Spaces in proc odstext</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/774149#M246003</link>
      <description>&lt;P&gt;Hello Experts,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm wonderign how to put the spaces befor "Fixes" and "Variables" in proc odstext in my e-mail&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc odstext;
		p "Bonjour,";
		p "";
		
		p "Pour lalalalla.";
		p "";
		p "Ces lalala:";
		p "      - Fixes lalala,";
		p "      - Variables, lalalal.";
		p "";
	
		p "";
		p "Bien cordialement,";
		p "";
        run;

		ods _all_ close;
		filename myemail clear;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Thank you for your help !&lt;/P&gt;</description>
      <pubDate>Thu, 14 Oct 2021 09:57:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/774149#M246003</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2021-10-14T09:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: Spaces in proc odstext</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/774167#M246007</link>
      <description>&lt;P&gt;Are you sending a pure-text mail or html?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Oct 2021 10:20:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/774167#M246007</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2021-10-14T10:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: Spaces in proc odstext</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/774183#M246017</link>
      <description>ods listing close;&lt;BR /&gt;&lt;BR /&gt;		it's html:&lt;BR /&gt;               ods html body=myemail options(pagebreak="no") &lt;BR /&gt;		rs=none  style=minimal;&lt;BR /&gt;&lt;BR /&gt;		options nocenter nobyline pagesize=max;&lt;BR /&gt;		ods escapechar='^';&lt;BR /&gt;		data _null_;</description>
      <pubDate>Thu, 14 Oct 2021 11:26:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/774183#M246017</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2021-10-14T11:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Spaces in proc odstext</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/774196#M246022</link>
      <description>&lt;P&gt;Use TAB character instead ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;p "  '09'x     - Fixes lalala,";
p "  '09'x    - Variables, lalalal.";&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 Oct 2021 12:38:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/774196#M246022</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-10-14T12:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: Spaces in proc odstext</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/774198#M246024</link>
      <description>&lt;P&gt;I used the style-option asis=on when creating excel files with strange indentation, not sure if this work with html + mail.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Oct 2021 12:41:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/774198#M246024</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2021-10-14T12:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: Spaces in proc odstext</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/774200#M246025</link>
      <description>&lt;P&gt;Finally, I found this :&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Proc-ODS-text-in-PowerPoint/td-p/354175" target="_self"&gt;https://communities.sas.com/t5/SAS-Programming/Proc-ODS-text-in-PowerPoint/td-p/354175&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let spaces=^{unicode 00A0}^{unicode 00A0}^{unicode 00A0}^{unicode 00A0}^{unicode 00A0};

proc odstext;
  p "Hello";
  p "&amp;amp;spaces Hello";
  p "&amp;amp;spaces &amp;amp;spaces Hello";
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 Oct 2021 12:47:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/774200#M246025</guid>
      <dc:creator>SASdevAnneMarie</dc:creator>
      <dc:date>2021-10-14T12:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Spaces in proc odstext</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/917227#M361309</link>
      <description>This is exactly what I was looking for, thanks a lot for sharing!</description>
      <pubDate>Wed, 21 Feb 2024 19:14:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Spaces-in-proc-odstext/m-p/917227#M361309</guid>
      <dc:creator>viviwan</dc:creator>
      <dc:date>2024-02-21T19:14:04Z</dc:date>
    </item>
  </channel>
</rss>

