<?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: DDE - Populating an EXCEL Templage in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176570#M12525</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I second Reeza's approach.&amp;nbsp; If you absolutely have to do it this way, then get all your data, calculations done and export to excel with basic proc export.&amp;nbsp; Have a intermediary Excel with some VBA code which will populate the template anyway you like with the data you have exported.&amp;nbsp; DDE may not be supported much longer. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One further option you may want to consider is to move your template to XLSX format.&amp;nbsp; This is the latest MS Office XML based format.&amp;nbsp; Once you understand how it fits together (for instance rename an XLSX to .zip and then you can open and see folders/files beneath), you can pretty much build it to look however you like, as long as you know XML, and Open Office format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Jul 2014 08:15:52 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2014-07-14T08:15:52Z</dc:date>
    <item>
      <title>DDE - Populating an EXCEL Templage</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176565#M12520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;I am using the DDE method to populate an EXCEL report template.&amp;nbsp; &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;I have a template that is a matrix of data, but all the data that needs to be populated is not consecutive.&amp;nbsp; There are some calculated fields in between.&amp;nbsp; I use multiple '09'x to to change to the appropriate column.&amp;nbsp; This however deletes formulas that are already present in the template.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;My SAS data looks like &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="265"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="64"&gt;Week&lt;/TD&gt;&lt;TD width="73"&gt;Customers&lt;/TD&gt;&lt;TD width="64"&gt;Visits&lt;/TD&gt;&lt;TD width="64"&gt;Sales&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD align="right"&gt;100&lt;/TD&gt;&lt;TD align="right"&gt;120&lt;/TD&gt;&lt;TD align="right"&gt;1000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;and the report needs to look like:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 441px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="64"&gt;Week&lt;/TD&gt;&lt;TD width="73"&gt;Customers&lt;/TD&gt;&lt;TD width="64"&gt;Visits&lt;/TD&gt;&lt;TD width="64"&gt;Visits / Customers&lt;/TD&gt;&lt;TD width="64"&gt;Sales&lt;/TD&gt;&lt;TD width="112"&gt;Sales / Customer&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;1&lt;/TD&gt;&lt;TD align="right"&gt;100&lt;/TD&gt;&lt;TD align="right"&gt;120&lt;/TD&gt;&lt;TD align="right"&gt;1.2&lt;/TD&gt;&lt;TD align="right"&gt;1000&lt;/TD&gt;&lt;TD align="right"&gt;10&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;where "Visits / Customer" and "Sales / Customer " are present in the report template as formulas.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;When I try skipping over the column Visits/ Customer by using multiple '09x' statements, the formula is that column is being deleted.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;my SAS code looks like this.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;DATA _NULL_&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;put Week '09x'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;customer '09x' '09x'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;sales;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;sales is being poulated in the proper column but the formula for VISITS/ CUSTOMER is being deleted.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;Changing the template is not an option at this point, otherwise I would just calculate the folrmulas in my data set and write the values in EXCEL.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;Does anyone have any suggestions.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 18:16:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176565#M12520</guid>
      <dc:creator>BMI0776</dc:creator>
      <dc:date>2014-07-11T18:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: DDE - Populating an EXCEL Templage</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176566#M12521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you can change the template (not the format) I suggest adding in a hidden sheet that you export to excel, using a standard export. Then have the cells linked to the exported version. When you export a new data set the links will remain and update automatically. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you absolutely cannot change the template then you'll have to manually navigate to each cell you want to put numbers in and then put the number into the cell rather than a generic put statement. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 18:30:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176566#M12521</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-07-11T18:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: DDE - Populating an EXCEL Templage</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176567#M12522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rather than using DDE, download and use the macro you can download at:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export" title="http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export"&gt;http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The process is described in the paper but, basically, what will accomplish the task is treating it as a two-step approach:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First, creating a new workbook, using the template, writing the data to the cell range that you want, but only exporting week, customers and visits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, adding to the new workbook at the correct cell location and only adding sales.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, given the following data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input Week Customers Visits Sales;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;1 100 120 1000&lt;/P&gt;&lt;P&gt;2 200 130 1500&lt;/P&gt;&lt;P&gt;3 300 140 1600&lt;/P&gt;&lt;P&gt;4 400 160 1700&lt;/P&gt;&lt;P&gt;5 500 170 1800&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and assuming that you had a template, c:\BMI_Template.xltx, with a Sheet labeled 'Sheet1', the following would use the above data (work.test) to create a new workbook (c:\BMI.xlsx), with a sheet labeled 'Want'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%exportxl(data=test (keep=Week Customers Visits), &lt;/P&gt;&lt;P&gt; template=c:\BMI_Template.xltx, &lt;/P&gt;&lt;P&gt; templatesheet=Sheet1, &lt;/P&gt;&lt;P&gt; outfile=c:\BMI.xlsx, &lt;/P&gt;&lt;P&gt; sheet=Want, &lt;/P&gt;&lt;P&gt; type=N, &lt;/P&gt;&lt;P&gt; usenames=N, &lt;/P&gt;&lt;P&gt; range=A2) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%exportxl(data=test (keep=Sales), &lt;/P&gt;&lt;P&gt; outfile=c:\BMI.xlsx, &lt;/P&gt;&lt;P&gt; sheet=Want, &lt;/P&gt;&lt;P&gt; type=M, &lt;/P&gt;&lt;P&gt; usenames=N, &lt;/P&gt;&lt;P&gt; range=E2)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 19:21:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176567#M12522</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-07-11T19:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: DDE - Populating an EXCEL Templage</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176568#M12523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can think of two DDE approaches.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Create 2 or more triplets corresponding to the nonadjacent grids to be populated. In this example, one triplet would handle columns 1 through 3 and the other would do column 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Abandon triplets and instead use the DDE System channel to pass Excel formulas. One at a time change the active cell and populate it, using Excel functions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 Jul 2014 16:14:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176568#M12523</guid>
      <dc:creator>Howles</dc:creator>
      <dc:date>2014-07-13T16:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: DDE - Populating an EXCEL Templage</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176569#M12524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not fully aware of DDE approach,but normally i use ODS and proc report. with in that I use computed columns where you can create these calculated columns.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 07:24:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176569#M12524</guid>
      <dc:creator>Vish33</dc:creator>
      <dc:date>2014-07-14T07:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: DDE - Populating an EXCEL Templage</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176570#M12525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I second Reeza's approach.&amp;nbsp; If you absolutely have to do it this way, then get all your data, calculations done and export to excel with basic proc export.&amp;nbsp; Have a intermediary Excel with some VBA code which will populate the template anyway you like with the data you have exported.&amp;nbsp; DDE may not be supported much longer. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One further option you may want to consider is to move your template to XLSX format.&amp;nbsp; This is the latest MS Office XML based format.&amp;nbsp; Once you understand how it fits together (for instance rename an XLSX to .zip and then you can open and see folders/files beneath), you can pretty much build it to look however you like, as long as you know XML, and Open Office format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 08:15:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176570#M12525</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-07-14T08:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: DDE - Populating an EXCEL Templage</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176571#M12526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all for the input.&amp;nbsp; There are too many cells to update so creating a new table to link to is impractical&amp;nbsp; and I&amp;nbsp; don't know VBA.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was able to change the template,&amp;nbsp; but am now facing another issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The values are written to the correct cells.&amp;nbsp; The first column is being written as a number, the reaming cells are being populated as text.&amp;nbsp; The original&amp;nbsp; template has all cells as numeric.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know why this may happen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 17:14:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176571#M12526</guid>
      <dc:creator>BMI0776</dc:creator>
      <dc:date>2014-07-15T17:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: DDE - Populating an EXCEL Templage</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176572#M12527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am afraid I am going to say it again, ods tagset, makes it all so simple.&amp;nbsp; Have a look at this paper: &lt;A class="active_link" href="http://support.sas.com/resources/papers/proceedings13/316-2013.pdf" title="http://support.sas.com/resources/papers/proceedings13/316-2013.pdf"&gt;http://support.sas.com/resources/papers/proceedings13/316-2013.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can set the format of any cell with the tagattr.&amp;nbsp; For dde, you could have a look at: &lt;A class="active_link" href="http://analytics.ncsu.edu/sesug/2004/DP03-Beal.pdf" title="http://analytics.ncsu.edu/sesug/2004/DP03-Beal.pdf"&gt;http://analytics.ncsu.edu/sesug/2004/DP03-Beal.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 18:05:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176572#M12527</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-07-15T18:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: DDE - Populating an EXCEL Templage</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176573#M12528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DDE is new for me, I don't know how to use DDE populate your &lt;A href="http://www.businessrefinery.com/excel-barcode/data_matrix.html"&gt;&lt;SPAN style="color: #575757;"&gt;matrix of data EXCEL&lt;/SPAN&gt;&lt;/A&gt; template&lt;SPAN&gt; &lt;/SPAN&gt;and sorry that I can't help you. And I want to ask how to &lt;A href="http://www.businessrefinery.com/products/barcode_net/barcodes/net-data-matrix.html"&gt;&lt;SPAN style="color: #575757;"&gt;create a matrix of data&lt;/SPAN&gt;&lt;/A&gt;? Hope you can give me some advices.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 03:21:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176573#M12528</guid>
      <dc:creator>longwest</dc:creator>
      <dc:date>2015-06-25T03:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: DDE - Populating an EXCEL Templage</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176574#M12529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DDE Is very old (30 years) and should better be avoided. Neither Sas or ms are promoting the usage it is only still there because of supporting all those old things. It is slow only for small data and suffering from language nls effects.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 05:42:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176574#M12529</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2015-06-25T05:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: DDE - Populating an EXCEL Templage</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176575#M12530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much for the information.&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 06:47:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176575#M12530</guid>
      <dc:creator>longwest</dc:creator>
      <dc:date>2015-06-25T06:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: DDE - Populating an EXCEL Templage</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176576#M12531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How are you writing the data to the cells? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 15:53:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176576#M12531</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-06-25T15:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: DDE - Populating an EXCEL Templage</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176577#M12532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't see where you are using DDE but with it you can use the 'select' command to navigate to specific rows and columns. Instead of the second tab command you can have DDE position to the correct cell to put the value for sales.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 20:31:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176577#M12532</guid>
      <dc:creator>Hoffy</dc:creator>
      <dc:date>2015-06-25T20:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: DDE - Populating an EXCEL Templage</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176578#M12533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it adding in spaces that cause it to convert to text? Perhaps adding in +(-1) before the '09'x might help:&lt;/P&gt;&lt;P&gt;PUT sales +(-1) '09'x;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jun 2015 10:48:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/DDE-Populating-an-EXCEL-Templage/m-p/176578#M12533</guid>
      <dc:creator>Bungeoura</dc:creator>
      <dc:date>2015-06-26T10:48:35Z</dc:date>
    </item>
  </channel>
</rss>

