<?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: Image overlapping data table. in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49959#M5435</link>
    <description>Thanks Cynthia.&lt;BR /&gt;
&lt;BR /&gt;
For the VB script to work does excel have to be on the server running the code?  &lt;BR /&gt;
&lt;BR /&gt;
Barry</description>
    <pubDate>Wed, 15 Dec 2010 19:50:25 GMT</pubDate>
    <dc:creator>twocanbazza</dc:creator>
    <dc:date>2010-12-15T19:50:25Z</dc:date>
    <item>
      <title>Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49947#M5423</link>
      <description>Hi All,&lt;BR /&gt;
I am trying to export a logo to the excel sheet using the msoffice2k ODS destination and I use the following code to do the export.The code exports the image but it overlaps with a couple of rows of data.&lt;BR /&gt;
Are thee any options in the msoffice2k tagset where i can specify it to start the data after the image?&lt;BR /&gt;
I tried looking into the doc="help" option but couldnt figure out anything straightforward that would fix things.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
ods escapechar="~";&lt;BR /&gt;
ods tagsets.msoffice2k file="G:\worksheet_msoffice2k_1.xls" style=default&lt;BR /&gt;
options( doc="help"&lt;BR /&gt;
              );&lt;BR /&gt;
&lt;BR /&gt;
 proc print data=sashelp.prdsale(obs=50);&lt;BR /&gt;
  title j=c " ~S={preimage='G:\sample_reports\logo.gif'} ";&lt;BR /&gt;
 run;&lt;BR /&gt;
&lt;BR /&gt;
ods tagsets.msoffice2k close;&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
Sapper</description>
      <pubDate>Tue, 14 Dec 2010 21:40:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49947#M5423</guid>
      <dc:creator>SAPPER</dc:creator>
      <dc:date>2010-12-14T21:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49948#M5424</link>
      <description>Hi:&lt;BR /&gt;
  When you use TAGSETS.MSOFFICE2K, you are not creating a true, binary Excel (.XLS) file. You are actually creating an HTML file that Excel knows how to open and render.  Naming the file with the ".XLS" extension only "fools" the Windows registry into launching Excel when you double click on the file name. &lt;BR /&gt;
          &lt;BR /&gt;
  So, for example, if you open G:\worksheet_msoffice2k_1.xls with Notepad, or any Text Editor, you should see HTML tags in the file. And if you search for the name of your image file, you should soon find an &amp;lt;IMG&amp;gt; tag that pointed to the GIF file.&lt;BR /&gt;
&lt;BR /&gt;
  Personally, I am never happy with the look of logos when I have Excel open and render an HTML file. Excel seems to want to "float" the image over the table. This never looks the way I want. The behavior you observe seems to be inherent in how Excel treats HTML &amp;lt;IMG&amp;gt; tags.&lt;BR /&gt;
 &lt;BR /&gt;
You might want to work with Tech Support to see whether they have any workarounds for this behavior.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 14 Dec 2010 22:49:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49948#M5424</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-12-14T22:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49949#M5425</link>
      <description>hi Cynthia,&lt;BR /&gt;
Thanks for the reply.&lt;BR /&gt;
Is there any other ODS destinations that would support exporting images perfectly to excel other than msoffice2k?&lt;BR /&gt;
&lt;BR /&gt;
The problem with using other Html ODS tagset destinations they donot create a true or pesudo ".xls" sheet as an output and we at the site require that the output file be truly .xls and not .html or .xml &lt;BR /&gt;
So I chose the msoffice2k ODS tagset.&lt;BR /&gt;
&lt;BR /&gt;
Can anyone let me know if there is any other way of exporting a logo onto excel and creating a true or pseudo excel (.xls) sheet?&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
Sapper</description>
      <pubDate>Wed, 15 Dec 2010 00:04:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49949#M5425</guid>
      <dc:creator>SAPPER</dc:creator>
      <dc:date>2010-12-15T00:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49950#M5426</link>
      <description>Have a look at &lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/msoffice2k/index.html" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/msoffice2k/index.html&lt;/A&gt; &lt;BR /&gt;
&lt;BR /&gt;
it talks about msoffice2k_x might do what you need....</description>
      <pubDate>Wed, 15 Dec 2010 00:57:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49950#M5426</guid>
      <dc:creator>twocanbazza</dc:creator>
      <dc:date>2010-12-15T00:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49951#M5427</link>
      <description>As cool as the new TAGSETS.MSOFFICE2K_X is, it is still producing HTML -- so if you follow the instructions and download the template code and run the template code, if you look down inside the file that's created, it contains:&lt;BR /&gt;
[pre]&lt;BR /&gt;
&amp;lt;html xmlns:x="urn:schemas-microsoft-com:office:excel"&amp;gt;&lt;BR /&gt;
&amp;lt;head&amp;gt;&lt;BR /&gt;
&amp;lt;meta name="Generator" content="SAS Software Version 9.2, see www.sas.com"&amp;gt;&lt;BR /&gt;
&amp;lt;meta http-equiv="Content-type" content="text/html; charset=windows-1252"&amp;gt;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                          &lt;BR /&gt;
....HTML tags, even when the file extension is .XLS -- so if the desire is to have a "true, binary" .XLS proprietary file, this tagset still creates HTML.&lt;BR /&gt;
&lt;BR /&gt;
I have had folks write their output to a directory location and then write a VB script to go out and open the HTML files in that directory with Excel and explicitly resave them as Excel proprietary format files (either XLS or XLSX).&lt;BR /&gt;
&lt;BR /&gt;
The only mechanisms I know of in SAS to create proprietary Excel files from SAS data are to:&lt;BR /&gt;
1) use PROC EXPORT (with SAS/ACCESS to PC File Formats)&lt;BR /&gt;
2) use the SAS Excel LIBNAME Engine (needs SAS/Access to PC File Formats)&lt;BR /&gt;
3) use the SAS Add-in to Microsoft Office (requires the SAS Platform for Business Analytics)&lt;BR /&gt;
 &lt;BR /&gt;
Otherwise, when you use ODS MSOFFICE2K or ODS TAGSETS.MSOFFICE2K_X -- you are still creating Microsoft HTML compliant files that Excel knows how to open and render. When you use ODS TAGSETS.EXCELXP, you are creating Microsoft XML Spreadsheet 2003 compliant files that Excel knows how to open and render.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 15 Dec 2010 01:50:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49951#M5427</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-12-15T01:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49952#M5428</link>
      <description>Fully understand cynthia, but I think the issues is also OP wants an image in the excel file which can't be done by ExcelXP, or export or any other easy way</description>
      <pubDate>Wed, 15 Dec 2010 02:00:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49952#M5428</guid>
      <dc:creator>twocanbazza</dc:creator>
      <dc:date>2010-12-15T02:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49953#M5429</link>
      <description>Thanks cynthia and twocanbazza for the replies.&lt;BR /&gt;
I have created xml files with excelXP that were directly opened with excel but then they included the requirement that the excel sheet should contain the logo in it.&lt;BR /&gt;
So had to switch to msoffice2k from excel XP.&lt;BR /&gt;
&lt;BR /&gt;
We donot have SAS Access to PC files installed on site and i don't see it to be installed in the near future.&lt;BR /&gt;
&lt;BR /&gt;
I have found another ODS tagset "The tableeditor tagset ".&lt;BR /&gt;
It says that I can apply the logos in the documentation&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/tableeditor/index.html" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/tableeditor/index.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
If you go down the page and look in the "Exporting to Excel" section there seems to be an option called "excel_save_file" .&lt;BR /&gt;
&lt;BR /&gt;
Does this mean that it is saving the created html file in a excel(.xls) format just like the custom VB script that cynthia was talking ??&lt;BR /&gt;
&lt;BR /&gt;
If anyone has used this tagset to create excel sheets please clarify my question on the "Excel_Save_file" option.&lt;BR /&gt;
I have never used this tagset and will probabaly try tommorow .&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
Sapper&lt;B&gt;&lt;/B&gt;&lt;B&gt;&lt;/B&gt;&lt;B&gt;&lt;/B&gt;&lt;B&gt;&lt;/B&gt;</description>
      <pubDate>Wed, 15 Dec 2010 03:41:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49953#M5429</guid>
      <dc:creator>SAPPER</dc:creator>
      <dc:date>2010-12-15T03:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49954#M5430</link>
      <description>From what was said by the OP (underline mine):&lt;BR /&gt;
&lt;B&gt;&lt;BR /&gt;
"we at the site require that the output file be &lt;U&gt; truly&lt;/U&gt; .xls and not .html or .xml &lt;BR /&gt;
So I chose the msoffice2k ODS tagset."&lt;BR /&gt;
&lt;/B&gt;&lt;BR /&gt;
    &lt;BR /&gt;
The OP chose MSOFFICE2K without understanding that it was HTML "under the covers" -- so if HTML turns out to be OK, then, you're right, the new MSOFFICE2K_X tagset template may offer the ability to insert a "non-floating" logo into the HTML file. But it will still be &lt;B&gt;&lt;U&gt;HTML output&lt;/U&gt;&lt;/B&gt; from either MSOFFICE2K or TAGSETS.MSOFFICE2K_X.&lt;BR /&gt;
 &lt;BR /&gt;
If the client is not willing to have an HTML file instead of proprietary XLS, then other solutions must be found (OLE, ODBC, DDE, populate an XLT with a CSV file, etc, etc.)&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 15 Dec 2010 03:44:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49954#M5430</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-12-15T03:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49955#M5431</link>
      <description>HI cynthia,&lt;BR /&gt;
If you Can point me towards the "other" solutions that you were talking in your reply, it would be really helpful to check the alternatives to MSOffice2k / 2K_X tagsets.&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
Sapper</description>
      <pubDate>Wed, 15 Dec 2010 03:53:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49955#M5431</guid>
      <dc:creator>SAPPER</dc:creator>
      <dc:date>2010-12-15T03:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49956#M5432</link>
      <description>Hi:&lt;BR /&gt;
  TAGSETS.TABLEEDITOR uses HTML with embedded JavaScript. If you can load your browser with HTML files that have embedded JavaScript to do the creation of an HTML file, this solution may work. However, I believe that the HTML file must load into the browser first before the JavaScript "Export/Save" button becomes active. &lt;BR /&gt;
Information on TAGSETS.TABLEEDITOR is here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/tableeditor/index.html" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/tableeditor/index.html&lt;/A&gt; &lt;BR /&gt;
and&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/tableeditor/index.html#exporte" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/tableeditor/index.html#exporte&lt;/A&gt; (see the suboptions EXCEL_SAVE_FILE and UPDATE_TARGET starting at this location in the description of TAGSETS.TABLEEDITOR)&lt;BR /&gt;
&lt;BR /&gt;
As for the other methods -- OLE-DB, ODBC, DDE, creating Microsoft XLT files -- those are all Microsoft topics. To the extent that you can use OLE-DB, ODBC and/or DDE with SAS -- you are basically sending Microsoft commands to Excel using a "conversation" between two applications. If you are using SAS in a client/server scenario -- such as EG on Windows and SAS on Unix, then you may not be able to use DDE, etc, because I believe both apps have to be talking to each other on the same system for the "conversation" to take place.&lt;BR /&gt;
 &lt;BR /&gt;
There are some user group papers on DDE, ODBC, OLE-DB, etc -- probably more DDE examples than anything else out there. &lt;BR /&gt;
(If you do a Google search on:&lt;BR /&gt;
Koen Vyverman SAS DDE &lt;BR /&gt;
or&lt;BR /&gt;
Leroy Bessler SAS DDE &lt;BR /&gt;
you should find some good papers.)&lt;BR /&gt;
&lt;BR /&gt;
 It looks to me like TAGSETS.MSOFFICE2K_X will allow you to load an Excel macro when the file is opened or closed -- this may be another alternative -- if your clients allow the use of Excel macros -- it might be a simple Excel macro as described here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/msoffice2k/index.html#Macro" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/msoffice2k/index.html#Macro&lt;/A&gt; (of course that means the Excel macro would also have to be written and resident on the user's system).</description>
      <pubDate>Wed, 15 Dec 2010 04:09:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49956#M5432</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-12-15T04:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49957#M5433</link>
      <description>SAPPER.&lt;BR /&gt;
&lt;BR /&gt;
We are having the same issues here, we have been using the ExcelXP tagset and now we want our logo in the supplied output.&lt;BR /&gt;
&lt;BR /&gt;
Other issues with the 2k and ExcelXP tagset is as Cynthia rightly pointed out is that the output is not true excel  (ie Markup, HTML or XML) which produces large files when there is alot of data.&lt;BR /&gt;
&lt;BR /&gt;
I'll let you know how we get one, or if you beat us to it let me know how you go.&lt;BR /&gt;
&lt;BR /&gt;
I think think there is going to be a simple answer to this one.&lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
&lt;BR /&gt;
Barry</description>
      <pubDate>Wed, 15 Dec 2010 18:44:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49957#M5433</guid>
      <dc:creator>twocanbazza</dc:creator>
      <dc:date>2010-12-15T18:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49958#M5434</link>
      <description>Hi:&lt;BR /&gt;
  I don't write VB Script code. But I have had students tell me that a quick way to get "true" Excel files is to write a VB Script to go out, open the HTML or XML file and then do a SAVE AS--&amp;gt; XLS (or whatever Excel version you want) -- before the file was made available for general consumption.&lt;BR /&gt;
 &lt;BR /&gt;
  cynthia</description>
      <pubDate>Wed, 15 Dec 2010 19:44:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49958#M5434</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-12-15T19:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49959#M5435</link>
      <description>Thanks Cynthia.&lt;BR /&gt;
&lt;BR /&gt;
For the VB script to work does excel have to be on the server running the code?  &lt;BR /&gt;
&lt;BR /&gt;
Barry</description>
      <pubDate>Wed, 15 Dec 2010 19:50:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49959#M5435</guid>
      <dc:creator>twocanbazza</dc:creator>
      <dc:date>2010-12-15T19:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49960#M5436</link>
      <description>Hi:&lt;BR /&gt;
  I'm not really sure. The folks who have explained it to me were writing their ODS output to a shared Windows directory, like a Q: drive and then running the VB Script on everything in that directory by opening the file with Excel and doing a file Save AS --&amp;gt; XLS -- so I would imagine that the key is that the VB Script and Excel have to be somewhere in the same vicinity or the files to be saved have to be accessible to Excel, whereEVER it is. Nobody said anything about the mechanics fo the VB Script and Excel, server-wise.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 15 Dec 2010 21:50:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49960#M5436</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-12-15T21:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49961#M5437</link>
      <description>Thanks</description>
      <pubDate>Wed, 15 Dec 2010 22:12:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49961#M5437</guid>
      <dc:creator>twocanbazza</dc:creator>
      <dc:date>2010-12-15T22:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: Image overlapping data table.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49962#M5438</link>
      <description>Hi Everyone.&lt;BR /&gt;
SAS Tech support came up with the Suggestion to use MSOFFICE2K_X tagset instead of MSOFFICE2K.&lt;BR /&gt;
This was the last option on the plate..&lt;BR /&gt;
&lt;BR /&gt;
The tagset fixed the problem and there are certain options in the tagset which can be used to adjust the image and the table placement in Excel.&lt;BR /&gt;
I havent fully tested all the other things in the tagset (Like exporting multiple worksheets and defining multiple Worksheet names) but the basic task of exporting the table along with the logo works with this without overlapping the image on the table.&lt;BR /&gt;
&lt;BR /&gt;
Here are some of the options that i ve used with it.&lt;BR /&gt;
( &lt;BR /&gt;
  doc="help"&lt;BR /&gt;
  Margin="0.5in 0.5in 0.5in 0.5in"&lt;BR /&gt;
  Orientation="landscape"&lt;BR /&gt;
  draftquality="Yes"&lt;BR /&gt;
  fittopage="Yes"   &lt;BR /&gt;
  frozen_headers="3" &lt;BR /&gt;
  frozen_rowheaders="3"&lt;BR /&gt;
  image_path="C:\logo.JPG" &lt;BR /&gt;
  &lt;BR /&gt;
  image_height="52"&lt;BR /&gt;
  image_width="183"&lt;BR /&gt;
&lt;BR /&gt;
  sheet_name="MY_Sheet"&lt;BR /&gt;
)&lt;BR /&gt;
&lt;BR /&gt;
The doc="help" option puts up a lot of information on the SAS log and you can look at it to figure out what each option does in detail.&lt;BR /&gt;
&lt;BR /&gt;
Hope this helps others.&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
SAPPER.</description>
      <pubDate>Thu, 16 Dec 2010 21:59:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Image-overlapping-data-table/m-p/49962#M5438</guid>
      <dc:creator>SAPPER</dc:creator>
      <dc:date>2010-12-16T21:59:18Z</dc:date>
    </item>
  </channel>
</rss>

