<?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: Center cell contents for across variable for categories where only quarterly data available in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529562#M73673</link>
    <description>Sorry, hit that by accident! Do you have an indicator in your data set that will tell you if an observation is quarterly or monthly?</description>
    <pubDate>Wed, 23 Jan 2019 21:32:34 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-01-23T21:32:34Z</dc:date>
    <item>
      <title>Center cell contents for "across variable" for company where only quarterly data is available</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529537#M73671</link>
      <description>&lt;P&gt;The data I am using for my question is from SASHELP for the purpose of formulating my question.&amp;nbsp; The reason I have removed data for two months for IBM is in order to simulate the fact that some of the companies in my monthly data only contain end of the quarter data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where I am stuck is that for these companies with only end of qtr data (which I have placed towards the end of the table), I would like to center the display within the three column cell (as shown in the second table shown below the code).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The destination is PDF and I am using SAS 9.4 (release 3).&amp;nbsp; &amp;nbsp;My code is shown below.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Aroop&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;FILENAME pdfrep '~/stock.pdf'; 
data stocks;
   set sashelp.stocks (where=(year(date)=2005));
   Quarter=QTR(date);
   if stock="IBM" and Month(date) not IN(3,6,9,12) 
      then call missing(close);
 run;  
proc sort;  by descending stock date;run;

option missing='-';

ods pdf file=pdfrep;
proc report nowd;
   format date monyy7. Quarter roman3.;
   column stock close,(Quarter,date);
   define stock/group order=data;   
   define close/analysis ' ' ;
   define Quarter/across ' ' nozero;
   define date/across ' ' order=data;
 run;
 ods pdf close;
 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Capture.JPG" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26521i836DC458FD1554DD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 22:03:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529537#M73671</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-01-23T22:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Center cell contents for across variable for categories where only quarterly data available [how to improve your question]</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529561#M73672</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/78622"&gt;@ghosh&lt;/a&gt;,&lt;/P&gt;&lt;BR /&gt; &lt;P&gt;Your question requires more details before experts can help.&amp;nbsp;Can you revise your question to include more information?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Review this checklist:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Specify a meaningful subject line for your topic.&amp;nbsp; Avoid generic subjects like "need help," "SAS query," or "urgent."&lt;/LI&gt;
&lt;LI&gt;When appropriate, provide sample data in text or DATA step format.&amp;nbsp; See &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;this article for one method&lt;/A&gt;&amp;nbsp;you can use.&lt;/LI&gt;
&lt;LI&gt;If you're encountering an error in SAS, include the SAS log or a screenshot of the error condition.&amp;nbsp;Use the&amp;nbsp;&lt;STRONG&gt;Photos&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;button to include the image in your message.&lt;BR /&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" style="width: 279px;"&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/16608i91A52F817EAC9A69/image-dimensions/279x150?v=1.0" width="279" height="150" alt="use_buttons.png" title="use_buttons.png" /&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;It also helps to include an example (table or picture) of the result that you're trying to achieve.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;To edit your original message, select the "blue gear" icon at the top of the message and select&amp;nbsp;&lt;STRONG&gt;Edit Message&lt;/STRONG&gt;.&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;From there you can adjust the title and add more details to the body of the message.&amp;nbsp; Or, simply reply to this message with any additional information you can supply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" style="width: 229px;"&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/16605iAC020BC79315B045/image-size/large?v=1.0&amp;amp;px=600" alt="edit_post.png" title="edit_post.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;SAS experts are eager to help -- help&amp;nbsp;&lt;EM&gt;them&lt;/EM&gt; by providing as much detail as you can.&lt;/P&gt; &lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style:italic;font-size:smaller;"&gt;This prewritten response was triggered for you by fellow SAS Support Communities member &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&lt;/SPAN&gt;&lt;/P&gt;.</description>
      <pubDate>Wed, 23 Jan 2019 21:32:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529561#M73672</guid>
      <dc:creator>Community_Guide</dc:creator>
      <dc:date>2019-01-23T21:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Center cell contents for across variable for categories where only quarterly data available</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529562#M73673</link>
      <description>Sorry, hit that by accident! Do you have an indicator in your data set that will tell you if an observation is quarterly or monthly?</description>
      <pubDate>Wed, 23 Jan 2019 21:32:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529562#M73673</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-23T21:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Center cell contents for across variable for categories where only quarterly data available</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529563#M73674</link>
      <description>&lt;P&gt;Hi Reeza,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the month is at the end of the quarter, then that's the month for which I have the data for that company.&amp;nbsp; The other months are coded as missing, hence I put in the following line to simulate my data:&lt;/P&gt;&lt;P&gt;&amp;nbsp; If stock ="IBM" AND month(date) not in(3,6,9,12)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Aroop&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 21:39:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529563#M73674</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-01-23T21:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Center cell contents for "across variable" for company where only quarterly data is av</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529588#M73676</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt;PROC REPORT will not span columns such as you display for the row for IBM. You can get rid of the missing "dots" in the first 2 months of the quarter on the row for IBM, but if every quarter has 3 months, then PROC REPORT will want the row for IBM to have the same number of columns as the row for Intel and the row for Microsoft.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can do the kind of column spanning in the data cells you want using the Report Writing Interface. For example, this report using some fake data was created using the Report Writing Interface. Note the row for Age 16 compared to the other rows.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="span_cells.png" style="width: 354px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26527i87D92B1E9134B19E/image-size/large?v=v2&amp;amp;px=999" role="button" title="span_cells.png" alt="span_cells.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 00:49:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529588#M73676</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-01-24T00:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Center cell contents for "across variable" for company where only quarterly data is av</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529603#M73677</link>
      <description>&lt;P&gt;Cynthia,&lt;/P&gt;&lt;P&gt;This is exactly what I have been trying to do, could you show me please how you managed to center the numbers by using column spanning? This will be a perfect solution. &amp;nbsp;And will your solution work in a PDF destination?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The way I have been try to accomplish it is by moving the end of the quarter month value to the previous month and hide the vertical border around it, but have not been able to suppress the vertical border for the cells with the values.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Aroop &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 03:05:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529603#M73677</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-01-24T03:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Center cell contents for "across variable" for company where only quarterly data is av</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529737#M73678</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;Take a look at this paper: &lt;A href="http://support.sas.com/resources/papers/proceedings16/SAS5762-2016.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings16/SAS5762-2016.pdf&lt;/A&gt; -- In this paper, I used the Report Writing Interface techniques shown in Example #5. I used the column spanning attribute to get the spanning to happen based on whether I had 2 items to fill columns 2 and 3 and 2 columns to fill columns 4 and 5.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The challenge is that I did NOT use PROC REPORT for this report. When I am back on a computer with SAS, I will post an example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 16:26:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529737#M73678</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-01-24T16:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Center cell contents for "across variable" for company where only quarterly data is av</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529864#M73690</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;SPAN&gt;Cynthia for the link to your paper.&amp;nbsp; It's quite thorough, I have quickly read through it and a few others including a couple by Peter Lund.&amp;nbsp; I intend to delve deeper if in fact it is the only way to achieve my goal.&amp;nbsp; RWI seems like a serious alternative to Proc Report/Tabulate especially one needs the rowspan and colspan features.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;However, I have been unable to find any reference to simulate the "across" feature found in Proc Report.&amp;nbsp; Unless we are meant to transpose the dataset to achieve&amp;nbsp;this functionality.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Aroop&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 21:02:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529864#M73690</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-01-24T21:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: Center cell contents for "across variable" for company where only quarterly data is av</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529884#M73691</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;When you're starting out, I do recommend restructuring your data so that it is "flattened" and you don't need a more complex DATA step to create your table. Neither REPORT nor TABULATE will do the kind of column spanning you want to achieve. So if it was up to me, I'd try to convince my users to use the PROC REPORT or TABULATE version of the report with the multiple columns for each quarter, because after all, there ARE multiple months in each quarter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; It is possible to generate something that mimics ACROSS with DATA step,&amp;nbsp; but the coding is much more complex and sort of a headache to plan out. Possible, but not as easy as transposing your data or living with PROC REPORT output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; I'm back at my computer and changed the data a bit to so it would test ALL the possible conditions (If I had 2 values, if I had only 1 value, if I had no values):&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="span_cells2.png" style="width: 338px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26559i5FEAA14F4ACBA8E7/image-size/large?v=v2&amp;amp;px=999" role="button" title="span_cells2.png" alt="span_cells2.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; My data for the program pretty much was already structured to make the simplest code possible. I used a DATALINES to read the data, but could have done a transpose too (it was just easier to make data:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data fakedata;
  infile datalines;
  input Category $ fheight mheight fweight mweight;
datalines;
Cat1 . . . . 
Cat2 51.30 57.50 50.50 85.00 
Cat3 60.90 62.50 91.00 84.00 
Cat4 63.55 . 96.25 . 
Cat5 64.50 66.75 112.25 122.50 
Cat6 .  72.00 .  150.00 
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp; Then here's my program to produce the output:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
ods pdf file="c:\temp\col_span_rwi.pdf" ;
title 'Span Columns in Header and Data Cells';
footnote;
data _null_; 
  set fakedata end=last; 
  if _N_ = 1 then do; 
      dcl odsout obj(); 
      obj.table_start(); 
      obj.head_start(); 
      ** Header row 1;
      obj.row_start(type:"Header");
	  obj.format_cell(text: " ");
      obj.format_cell(text: "Averages By Gender", column_span:4, style_attr:"color=black fontweight=bold"); 
      obj.row_end(); 
      ** Header row 2;
      obj.row_start(type:"Header");
	  obj.format_cell(text: " ");
      obj.format_cell(text: "F", style_attr:"color=black fontweight=bold"); 
      obj.format_cell(text: "M", style_attr:"color=black fontweight=bold"); 
      obj.format_cell(text: "F", style_attr:"color=black fontweight=bold"); 
      obj.format_cell(text: "M", style_attr:"color=black fontweight=bold"); 
      obj.row_end(); 
      ** Header row 3;
      obj.row_start(type: "Header"); 
      obj.format_cell(text: "Category", style_attr:"color=black fontweight=bold"); 
      obj.format_cell(text: "Height", style_attr:"color=black fontweight=bold"); 
      obj.format_cell(text: "Height", style_attr:"color=black fontweight=bold"); 
      obj.format_cell(text: "Weight", style_attr:"color=black fontweight=bold"); 
      obj.format_cell(text: "Weight", style_attr:"color=black fontweight=bold"); 
      obj.row_end(); 
      obj.head_end(); 
    end;
  ** start a row for every obs;
	** figure out the number of missing values for the HEIGHT/WEIGHT variables using nmiss;
      missht = nmiss(fheight, mheight);
      misswt = nmiss(fweight, mweight);

      obj.row_start(); 
      obj.format_cell(data: Category ); 
	  if missht = 0 then do;
	    ** if nothing is missing, write both values for HEIGHT;
        obj.format_cell(data: fheight); 
        obj.format_cell(data: mheight); 
	  end;
	  else if missht = 1 then do;
	    ** if one value is missing, figure out which value is there ;
	    ** and write the value with column spanning;
	    if fheight gt . then obj.format_cell(data: fheight, column_span:2); 
		else if mheight gt . then obj.format_cell(data: mheight,column_span:2); 
	  end;
	  else if missht = 2 then do;
	    ** if both values are missing, just write n/a in the cell;
	    obj.format_cell(text: "n/a",column_span:2);
	  end;
	    
	  ** Repeat the logic for the WEIGHT values in the next 2 columns;
	  if misswt = 0 then do;
        obj.format_cell(data: fweight); 
        obj.format_cell(data: mweight); 
	  end;
	  else if misswt = 1 then do;
	    if fweight gt . then obj.format_cell(data: fweight, column_span:2); 
		else if mweight gt . then obj.format_cell(data: mweight,column_span:2); 
	  end;
	  else if misswt = 2 then do;
	    obj.format_cell(text: "n/a",column_span:2);
	  end;
      obj.row_end(); 
   
  if last then do; 
      obj.table_end(); 
    end; 
run; 
ods pdf close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 21:42:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529884#M73691</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-01-24T21:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: Center cell contents for "across variable" for company where only quarterly data is av</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529893#M73692</link>
      <description>&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your detailed response.&amp;nbsp; Such a coincidence I was just watching your 2016 SGF presentation on this topic when I received your response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However the fact is my data is quite complex and adapting your suggestion will take a great deal of time, for my next project I will definitely use the RWI.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Meanwhile if I already have my table as below, I am trying to remove the vertical borders around the IBM numbers.&amp;nbsp; I am using Call define to achieve it but not able to get the style to work properly.&amp;nbsp; Could you suggest please how I may I suppress the vertical borders around the IBM numbers?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Aroop&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26560i8270C48D78D06CFC/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 22:13:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529893#M73692</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-01-24T22:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Center cell contents for "across variable" for company where only quarterly data is av</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529926#M73693</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If I needed RTF or PDF output, I'd switch to a style like JOURNAL that doesn't have any interior table lines. For HTML and a style like HTMLBLUE, which has a white background, I would change all the appropriate left and right border colors to be white.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="change_borders_white.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26566i549D365EB630608B/image-size/large?v=v2&amp;amp;px=999" role="button" title="change_borders_white.png" alt="change_borders_white.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But honestly, I would NOT do this. I'd train my users that if there was only one value in a quarter, it was the quarterly value. Or, I'd convince them to only have monthly values or quarterly values, but not mix like this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As you see, changing the borders is harder than you might want because not only do you have to "turn off" the borders for the middle cell (in this case, y1), but you also have to change the colors for the borders that touch from the neighboring cells.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 23:51:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/529926#M73693</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-01-24T23:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Center cell contents for "across variable" for company where only quarterly data is av</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/530081#M73697</link>
      <description>&lt;P&gt;Thanks Cynthia.&amp;nbsp; I will try both solutions.&lt;/P&gt;&lt;P&gt;Aroop&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 15:13:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Center-cell-contents-for-quot-across-variable-quot-for-company/m-p/530081#M73697</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2019-01-25T15:13:29Z</dc:date>
    </item>
  </channel>
</rss>

