<?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: HTML solution to right justify PROC REPORT LINE Statement in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/899008#M355348</link>
    <description>Hi, At this point, since my code runs correctly, but your code with your data has issues, you might want to consider opening a track with Tech Support. They will need to look at the code/data that works and at the code/data that doesn't work in order to help you find a resolution.&lt;BR /&gt;Cynthia</description>
    <pubDate>Tue, 17 Oct 2023 19:13:14 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2023-10-17T19:13:14Z</dc:date>
    <item>
      <title>HTML solution to right justify PROC REPORT LINE Statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/898537#M355147</link>
      <description>&lt;P&gt;The only solution I can find pertains to RTF.&amp;nbsp; In the following code, in the &lt;STRONG&gt;style(lines)&lt;/STRONG&gt; statement, all of the attributes except justify are assigned properly, that is the text is blue Consolas etc, but it is left justified.&amp;nbsp; How can I move this over to the right&lt;U&gt; in the HTML5 destination&lt;/U&gt;?&lt;/P&gt;&lt;PRE&gt;        proc report data=Rpt nowd  style(lines)=[fontsize=4 fontfamily=Consolas foreground=blue just=right];
          columns testlbl GOrd AnalyteName
          define GOrd          / noprint order order=data;
          define testlbl       / noprint order order=data;
          define AnalyteName   / display style(column)=[cellwidth=3.0in fontsize=5] "Assessment";
    
          compute after GOrd;
            line testlbl $100.;
          endcomp;
        run;&lt;/PRE&gt;</description>
      <pubDate>Fri, 13 Oct 2023 19:50:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/898537#M355147</guid>
      <dc:creator>ErikDilts_CTI</dc:creator>
      <dc:date>2023-10-13T19:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: HTML solution to right justify PROC REPORT LINE Statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/898542#M355149</link>
      <description>&lt;P&gt;As posted your code won't run: there is not semicolon ending the COLUMNS statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since you specifically state HTML5 destination you should provide an example of the ODS HTML5 statement you are using in case any of the options are involved with the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you provide example data that behaves as stated (at least one the semicolon issue is fixed)? Example data should be in the form of working data step code&amp;nbsp; pasted into a text box opened on the forum using the &amp;lt;/&amp;gt; above the message window to prevent the forum software from reformatting pasted text which can cause some data step code to fail.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2023 20:21:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/898542#M355149</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-10-13T20:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: HTML solution to right justify PROC REPORT LINE Statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/898574#M355170</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I'm not having any issues when I make fake data in having the LINE output showing as right justified, as shown below:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_0-1697245434018.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/88855iDE18E26821A698F5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_0-1697245434018.png" alt="Cynthia_sas_0-1697245434018.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I kept the text for the line relatively brief so that the justification would stand out in the fake results.&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Sat, 14 Oct 2023 01:05:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/898574#M355170</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2023-10-14T01:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: HTML solution to right justify PROC REPORT LINE Statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/898899#M355290</link>
      <description>&lt;P&gt;Thank you. I had cut off the visit variables to simplify the issue but they were the problem (?). I had just noprint as an option and changed that to display noprint and the code worked as expected.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 11:00:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/898899#M355290</guid>
      <dc:creator>ErikDilts_CTI</dc:creator>
      <dc:date>2023-10-17T11:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: HTML solution to right justify PROC REPORT LINE Statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/898906#M355295</link>
      <description>Actually it works sometimes and sometimes it doesn't.</description>
      <pubDate>Tue, 17 Oct 2023 12:07:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/898906#M355295</guid>
      <dc:creator>ErikDilts_CTI</dc:creator>
      <dc:date>2023-10-17T12:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: HTML solution to right justify PROC REPORT LINE Statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/899008#M355348</link>
      <description>Hi, At this point, since my code runs correctly, but your code with your data has issues, you might want to consider opening a track with Tech Support. They will need to look at the code/data that works and at the code/data that doesn't work in order to help you find a resolution.&lt;BR /&gt;Cynthia</description>
      <pubDate>Tue, 17 Oct 2023 19:13:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/899008#M355348</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2023-10-17T19:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: HTML solution to right justify PROC REPORT LINE Statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/899033#M355361</link>
      <description>&lt;P&gt;I figured out the common thread at least... it does not work as expected when run interactively, but it does in batch mode. Once I figured that out I noticed some other subtle changes in the output where minor things in the style were different.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 21:50:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/899033#M355361</guid>
      <dc:creator>ErikDilts_CTI</dc:creator>
      <dc:date>2023-10-17T21:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: HTML solution to right justify PROC REPORT LINE Statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/899168#M355401</link>
      <description>&lt;P&gt;In fact, when anyone except me runs it, it works fine. And seeing the outputs from the same program side by side, one run by me and one by someone else, I can see more differences in the style, they are just more subtle so I didn't notice them before. Suggests a problem with my template store perhaps.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 20:36:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HTML-solution-to-right-justify-PROC-REPORT-LINE-Statement/m-p/899168#M355401</guid>
      <dc:creator>ErikDilts_CTI</dc:creator>
      <dc:date>2023-10-18T20:36:48Z</dc:date>
    </item>
  </channel>
</rss>

