<?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: how to use excel formulas in dde in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-use-excel-formulas-in-dde/m-p/579182#M23125</link>
    <description>Hi:&lt;BR /&gt;  This really isn't an ODS or reporting question. When you use DDE, you send DDE commands from SAS to Excel using a DATA step program.&lt;BR /&gt;&lt;BR /&gt;  How you send formulas will be specific to how you specify a formula in a DDE command. You might want to look for papers or documentation about using DDE or open a Track with Tech Support.&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
    <pubDate>Mon, 05 Aug 2019 16:57:06 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2019-08-05T16:57:06Z</dc:date>
    <item>
      <title>how to use excel formulas in dde</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-use-excel-formulas-in-dde/m-p/579091#M23124</link>
      <description>&lt;P&gt;options noxwait noxsync ;&lt;BR /&gt;X '"C:\Program Files (x86)\Microsoft Office\root\Office16\excel.EXE"';&lt;BR /&gt;data _null_;&lt;BR /&gt;X=SLEEP(2);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;filename stansys dde 'excel|system';&lt;BR /&gt;data _null_;&lt;BR /&gt;file stansys;&lt;BR /&gt;put '[open("C:\Users\karthik\Documents\stansys1.xlsx")]';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;filename stansys1 dde 'excel|sheet2!r9c6:r16c12' notab;&lt;BR /&gt;data _null_;&lt;BR /&gt;set work.ba;&lt;BR /&gt;file stansys1;&lt;BR /&gt;put noncoveramt '09'x // billedamt '09'x ///copayamout '09'x //finamount '09'x ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;filename stansys1 dde 'excel|sheet2!r9c7:r16c12' notab;&lt;BR /&gt;data _null_;&lt;BR /&gt;set work.ba;&lt;BR /&gt;file stansys1;&lt;BR /&gt;where busdt='01feb2019';&lt;BR /&gt;put noncoveramt '09'x // billedamt '09'x ///copayamout '09'x //finamount '09'x ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;filename stansys1 dde 'excel|sheet2!r9c8:r16c12' notab;&lt;BR /&gt;data _null_;&lt;BR /&gt;set work.ba;&lt;BR /&gt;file stansys1;&lt;BR /&gt;where busdt='01mar2019';&lt;BR /&gt;put noncoveramt '09'x // billedamt '09'x ///copayamout '09'x //finamount '09'x ;&lt;BR /&gt;run;&lt;BR /&gt;filename stansys1 dde 'excel|sheet2!r9c9:r16c12' notab;&lt;BR /&gt;data _null_;&lt;BR /&gt;set work.ba;&lt;BR /&gt;file stansys1;&lt;BR /&gt;where busdt='01apr2019';&lt;BR /&gt;put noncoveramt '09'x // billedamt '09'x ///copayamout '09'x //finamount '09'x ;&lt;BR /&gt;run;&lt;BR /&gt;filename stansys1 dde 'excel|sheet2!r9c10:r16c12' notab;&lt;BR /&gt;data _null_;&lt;BR /&gt;set work.ba;&lt;BR /&gt;file stansys1;&lt;BR /&gt;where busdt='01may2019';&lt;BR /&gt;put noncoveramt '09'x // billedamt '09'x ///copayamout '09'x //finamount '09'x ;&lt;BR /&gt;run;&lt;BR /&gt;filename stansys1 dde 'excel|sheet2!r9c11:r16c12' notab;&lt;BR /&gt;data _null_;&lt;BR /&gt;set work.ba;&lt;BR /&gt;file stansys1;&lt;BR /&gt;where busdt='01jun2019';&lt;BR /&gt;put noncoveramt '09'x // billedamt '09'x ///copayamout '09'x //finamount '09'x ;&lt;BR /&gt;run;&lt;BR /&gt;filename stansys1 dde 'excel|sheet2!r9c12:r16c12' notab;&lt;BR /&gt;data _null_;&lt;BR /&gt;set work.ba;&lt;BR /&gt;file stansys1;&lt;BR /&gt;where busdt='01jul2019';&lt;BR /&gt;put noncoveramt '09'x // billedamt '09'x ///copayamout '09'x //finamount '09'x ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;filename stansys dde 'excel|system';&lt;BR /&gt;data _null_;&lt;BR /&gt;file stansys;&lt;BR /&gt;put '[save.as("C:\Users\karthik\Documents\stansys1.xlsx")]';&lt;BR /&gt;put '[close]';&lt;BR /&gt;put '[quit]';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data ba;&lt;BR /&gt;input noncoveramt billedamt copayamout finamount busdt$9.;&lt;BR /&gt;cards;&lt;BR /&gt;12.8 13.9 67.89 56.9 01jan2019&lt;BR /&gt;12.8 13.9 67.89 56.9 01feb2019&lt;BR /&gt;12.8 13.9 67.89 56.9 01mar2019&lt;BR /&gt;12.8 13.9 67.89 56.9 01apr2019&lt;BR /&gt;12.8 13.9 67.89 56.9 01may2019&lt;BR /&gt;12.8 13.9 67.89 56.9 01jun2019&lt;BR /&gt;12.8 13.9 67.89 56.9 01jul2019&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2019 10:37:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-use-excel-formulas-in-dde/m-p/579091#M23124</guid>
      <dc:creator>Karthik95</dc:creator>
      <dc:date>2019-08-05T10:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to use excel formulas in dde</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-use-excel-formulas-in-dde/m-p/579182#M23125</link>
      <description>Hi:&lt;BR /&gt;  This really isn't an ODS or reporting question. When you use DDE, you send DDE commands from SAS to Excel using a DATA step program.&lt;BR /&gt;&lt;BR /&gt;  How you send formulas will be specific to how you specify a formula in a DDE command. You might want to look for papers or documentation about using DDE or open a Track with Tech Support.&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
      <pubDate>Mon, 05 Aug 2019 16:57:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-use-excel-formulas-in-dde/m-p/579182#M23125</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-08-05T16:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: how to use excel formulas in dde</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-use-excel-formulas-in-dde/m-p/579189#M23127</link>
      <description>yes&lt;BR /&gt;</description>
      <pubDate>Mon, 05 Aug 2019 17:10:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-use-excel-formulas-in-dde/m-p/579189#M23127</guid>
      <dc:creator>Karthik95</dc:creator>
      <dc:date>2019-08-05T17:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to use excel formulas in dde</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-use-excel-formulas-in-dde/m-p/580165#M23158</link>
      <description>&lt;P&gt;&lt;A href="https://www.mwsug.org/proceedings/2010/excel_db/MWSUG-2010-166.pdf" target="_blank"&gt;https://www.mwsug.org/proceedings/2010/excel_db/MWSUG-2010-166.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2019 15:05:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-use-excel-formulas-in-dde/m-p/580165#M23158</guid>
      <dc:creator>DWilson</dc:creator>
      <dc:date>2019-08-09T15:05:51Z</dc:date>
    </item>
  </channel>
</rss>

