<?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 Proc Report - Email Size in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Email-Size/m-p/880202#M347789</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I am using the below code, I am seeing proper formatted reports in my EG but if I send it on email the columns are shrink and small. In my outlook email the output column is not aligned and formatted. When I am getting an option of how the message is displayed and to view it in a browser I am getting proper format and column width. IS there any way I can increase the size/width of column size. Is it code issue or email setting issue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc Report data=BS1_Sample_code Missing split="*" nowd&lt;BR /&gt;Style (report)= {just=left borderwidth=0.5 font =('zurich b',9PT) bordercolor=black font_size=2}&lt;BR /&gt;Style (header)= {foreground=white background=blue font_size=2 font=('zurich b',9PT) fontweight=bold bordercolor=black}&lt;BR /&gt;Style (column)= {just=center foreground=black font_size=2 borderwidth=0.5 borderstyle=solid bordercolor=black};&lt;/P&gt;&lt;P&gt;column ("Balance Sheet - Amount- (USD) in 1000's"(Entity_Cd Vs_Product VS_Product_L1&lt;BR /&gt;CURRENT_DAY_USD PREVIOUS_DAY_USD Variance Variance_per));&lt;/P&gt;&lt;P&gt;Define Entity_Cd/"ENTITY" group style={just=L cellwidth=0.9} ;&lt;BR /&gt;Define Vs_Product/"Vs Product" group style={just=L cellwidth=0.9} ;&lt;BR /&gt;Define VS_Product_L1/"VS_Product_L1" group style={just=L cellwidth=0.9} ;&lt;BR /&gt;Define CURRENT_DAY_USD/analysis sum "11JUN2023 - AMOUNT USD" format= 20. style={just=r cellwidth=0.5};&lt;BR /&gt;Define PREVIOUS_DAY_USD/analysis sum "10JUN2023 - AMOUNT USD" format= 20. style={just=r cellwidth=0.5};&lt;BR /&gt;Define Variance/analysis sum "Variance" format= 20. style={just=r cellwidth=0.5};&lt;BR /&gt;Define Variance_per/"Variance %" computed format=percent8.2 style={just=r cellwidth=0.5};&lt;/P&gt;&lt;P&gt;compute Variance_per;&lt;BR /&gt;Variance_per=(CURRENT_DAY_USD.sum-PREVIOUS_DAY_USD.sum)/PREVIOUS_DAY_USD.sum;&lt;BR /&gt;endcomp;&lt;/P&gt;&lt;P&gt;compute after Vs_Product;&lt;BR /&gt;Vs_Product="Total"||''||Vs_Product;&lt;BR /&gt;call define(_row_,"style","style={background=cxEEFFFF}");&lt;BR /&gt;endcomp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;break after Vs_Product / dol skip summarize;&lt;BR /&gt;rbreak after / style ={background=brown};&lt;/P&gt;</description>
    <pubDate>Mon, 12 Jun 2023 13:03:23 GMT</pubDate>
    <dc:creator>sameer112217</dc:creator>
    <dc:date>2023-06-12T13:03:23Z</dc:date>
    <item>
      <title>Proc Report - Email Size</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Email-Size/m-p/880202#M347789</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I am using the below code, I am seeing proper formatted reports in my EG but if I send it on email the columns are shrink and small. In my outlook email the output column is not aligned and formatted. When I am getting an option of how the message is displayed and to view it in a browser I am getting proper format and column width. IS there any way I can increase the size/width of column size. Is it code issue or email setting issue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc Report data=BS1_Sample_code Missing split="*" nowd&lt;BR /&gt;Style (report)= {just=left borderwidth=0.5 font =('zurich b',9PT) bordercolor=black font_size=2}&lt;BR /&gt;Style (header)= {foreground=white background=blue font_size=2 font=('zurich b',9PT) fontweight=bold bordercolor=black}&lt;BR /&gt;Style (column)= {just=center foreground=black font_size=2 borderwidth=0.5 borderstyle=solid bordercolor=black};&lt;/P&gt;&lt;P&gt;column ("Balance Sheet - Amount- (USD) in 1000's"(Entity_Cd Vs_Product VS_Product_L1&lt;BR /&gt;CURRENT_DAY_USD PREVIOUS_DAY_USD Variance Variance_per));&lt;/P&gt;&lt;P&gt;Define Entity_Cd/"ENTITY" group style={just=L cellwidth=0.9} ;&lt;BR /&gt;Define Vs_Product/"Vs Product" group style={just=L cellwidth=0.9} ;&lt;BR /&gt;Define VS_Product_L1/"VS_Product_L1" group style={just=L cellwidth=0.9} ;&lt;BR /&gt;Define CURRENT_DAY_USD/analysis sum "11JUN2023 - AMOUNT USD" format= 20. style={just=r cellwidth=0.5};&lt;BR /&gt;Define PREVIOUS_DAY_USD/analysis sum "10JUN2023 - AMOUNT USD" format= 20. style={just=r cellwidth=0.5};&lt;BR /&gt;Define Variance/analysis sum "Variance" format= 20. style={just=r cellwidth=0.5};&lt;BR /&gt;Define Variance_per/"Variance %" computed format=percent8.2 style={just=r cellwidth=0.5};&lt;/P&gt;&lt;P&gt;compute Variance_per;&lt;BR /&gt;Variance_per=(CURRENT_DAY_USD.sum-PREVIOUS_DAY_USD.sum)/PREVIOUS_DAY_USD.sum;&lt;BR /&gt;endcomp;&lt;/P&gt;&lt;P&gt;compute after Vs_Product;&lt;BR /&gt;Vs_Product="Total"||''||Vs_Product;&lt;BR /&gt;call define(_row_,"style","style={background=cxEEFFFF}");&lt;BR /&gt;endcomp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;break after Vs_Product / dol skip summarize;&lt;BR /&gt;rbreak after / style ={background=brown};&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2023 13:03:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Email-Size/m-p/880202#M347789</guid>
      <dc:creator>sameer112217</dc:creator>
      <dc:date>2023-06-12T13:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report - Email Size</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Email-Size/m-p/880228#M347795</link>
      <description>&lt;P&gt;Suggestion with options like Cellwidth: supply a unit of measure. One piece of software might default to a different unit so what you think is .9 inches might be interpreted as .9cm elsewhere. Same with fonts use a standard unit of measure like points instead of the relative font_size=2. Do you know what that 2 means?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another approach would be to create a document format like RTF and PDF, where you can see the result externally from the email program and attach the document instead of placing the report directly into the email.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/89720"&gt;@sameer112217&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I am using the below code, I am seeing proper formatted reports in my EG but if I send it on email the columns are shrink and small. In my outlook email the output column is not aligned and formatted. When I am getting an option of how the message is displayed and to view it in a browser I am getting proper format and column width. IS there any way I can increase the size/width of column size. Is it code issue or email setting issue&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc Report data=BS1_Sample_code Missing split="*" nowd&lt;BR /&gt;Style (report)= {just=left borderwidth=0.5 font =('zurich b',9PT) bordercolor=black font_size=2}&lt;BR /&gt;Style (header)= {foreground=white background=blue font_size=2 font=('zurich b',9PT) fontweight=bold bordercolor=black}&lt;BR /&gt;Style (column)= {just=center foreground=black font_size=2 borderwidth=0.5 borderstyle=solid bordercolor=black};&lt;/P&gt;
&lt;P&gt;column ("Balance Sheet - Amount- (USD) in 1000's"(Entity_Cd Vs_Product VS_Product_L1&lt;BR /&gt;CURRENT_DAY_USD PREVIOUS_DAY_USD Variance Variance_per));&lt;/P&gt;
&lt;P&gt;Define Entity_Cd/"ENTITY" group style={just=L cellwidth=0.9} ;&lt;BR /&gt;Define Vs_Product/"Vs Product" group style={just=L cellwidth=0.9} ;&lt;BR /&gt;Define VS_Product_L1/"VS_Product_L1" group style={just=L cellwidth=0.9} ;&lt;BR /&gt;Define CURRENT_DAY_USD/analysis sum "11JUN2023 - AMOUNT USD" format= 20. style={just=r cellwidth=0.5};&lt;BR /&gt;Define PREVIOUS_DAY_USD/analysis sum "10JUN2023 - AMOUNT USD" format= 20. style={just=r cellwidth=0.5};&lt;BR /&gt;Define Variance/analysis sum "Variance" format= 20. style={just=r cellwidth=0.5};&lt;BR /&gt;Define Variance_per/"Variance %" computed format=percent8.2 style={just=r cellwidth=0.5};&lt;/P&gt;
&lt;P&gt;compute Variance_per;&lt;BR /&gt;Variance_per=(CURRENT_DAY_USD.sum-PREVIOUS_DAY_USD.sum)/PREVIOUS_DAY_USD.sum;&lt;BR /&gt;endcomp;&lt;/P&gt;
&lt;P&gt;compute after Vs_Product;&lt;BR /&gt;Vs_Product="Total"||''||Vs_Product;&lt;BR /&gt;call define(_row_,"style","style={background=cxEEFFFF}");&lt;BR /&gt;endcomp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;break after Vs_Product / dol skip summarize;&lt;BR /&gt;rbreak after / style ={background=brown};&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2023 15:36:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-Email-Size/m-p/880228#M347795</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-06-12T15:36:14Z</dc:date>
    </item>
  </channel>
</rss>

