<?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 Put # sign in text for column header in PROC SQL in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Put-sign-in-text-for-column-header-in-PROC-SQL/m-p/979944#M378870</link>
    <description>&lt;P&gt;How does one put # sign that is included in text for a column label in PROC SQL?&amp;nbsp; When the following is run, # gets dropped from the column header.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select make, count(*) "# of cars" from sashelp.cars group by make;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 03 Dec 2025 15:22:31 GMT</pubDate>
    <dc:creator>PamG</dc:creator>
    <dc:date>2025-12-03T15:22:31Z</dc:date>
    <item>
      <title>Put # sign in text for column header in PROC SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Put-sign-in-text-for-column-header-in-PROC-SQL/m-p/979944#M378870</link>
      <description>&lt;P&gt;How does one put # sign that is included in text for a column label in PROC SQL?&amp;nbsp; When the following is run, # gets dropped from the column header.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select make, count(*) "# of cars" from sashelp.cars group by make;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 03 Dec 2025 15:22:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Put-sign-in-text-for-column-header-in-PROC-SQL/m-p/979944#M378870</guid>
      <dc:creator>PamG</dc:creator>
      <dc:date>2025-12-03T15:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Put # sign in text for column header in PROC SQL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Put-sign-in-text-for-column-header-in-PROC-SQL/m-p/979946#M378872</link>
      <description>&lt;P&gt;# is being used a split character for the label.&amp;nbsp; You can escape it with /:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select make, count(*)  "/# of cars" from sashelp.cars group by make;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Dec 2025 15:39:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Put-sign-in-text-for-column-header-in-PROC-SQL/m-p/979946#M378872</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2025-12-03T15:39:53Z</dc:date>
    </item>
  </channel>
</rss>

