<?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: ADDREPORT DIALOGUE BOX - Scripting &amp;amp; Macros in Fabrication CADmep Forum</title>
    <link>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5528022#M549</link>
    <description>&lt;P&gt;With Bluebeam you can export a pdf report into Excel. I believe you can also do this with Adobe. We do it all the time here. Maybe someday Autodesk will make it possible to send our reports straight to Excel. One can always hope!&lt;/P&gt;</description>
    <pubDate>Wed, 04 Mar 2015 14:51:43 GMT</pubDate>
    <dc:creator>davidronson</dc:creator>
    <dc:date>2015-03-04T14:51:43Z</dc:date>
    <item>
      <title>ADDREPORT DIALOGUE BOX - Scripting &amp; Macros</title>
      <link>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5514260#M535</link>
      <description>&lt;P&gt;Does anyone know if there is a way to use 'Addreport' fully through the command line.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i'm wanting to ultimately create a script to run a certain report in a certain position on several drawings however when using the addreport command the dialogue box always displays.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am aware that macros can be a added to buttons in the cui of autocad however i would also like to know if a macro can be created inside a script for the same reasons as above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2015 12:57:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5514260#M535</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-20T12:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: ADDREPORT DIALOGUE BOX - Scripting &amp; Macros</title>
      <link>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5514295#M536</link>
      <description>&lt;P&gt;You can do it via LISP and also have LISP execute your script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(command (addreport "REPORT NAME" (ssget)))&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2015 13:25:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5514295#M536</guid>
      <dc:creator>jmerch</dc:creator>
      <dc:date>2015-02-20T13:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: ADDREPORT DIALOGUE BOX - Scripting &amp; Macros</title>
      <link>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5516476#M537</link>
      <description>&lt;P&gt;Hi, thanks for the reply. I'm fairly new to scripting and lisp routines so i'm initially just trying to get my head around it and think of process' which can be sped up.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used what you sent me at the command line and it worked ok. however what i want to ultimately end up with is either a lisp routine or script that lets me create approx 4 different reports on a Model tab then exports them to a specifc location with the dwg name in the title.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Don't know how to do this but any help would be appreicated, as i am trauling through various websites at the moment to try and find out info on lisp routines&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2015 09:54:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5516476#M537</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-23T09:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: ADDREPORT DIALOGUE BOX - Scripting &amp; Macros</title>
      <link>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5517619#M538</link>
      <description>&lt;P&gt;I totally understand, we've all been there. Here's a question. Why are you concerned with placing the table in CAD then exporting it out? Why not just create a report (using the REPORTS) command and then you can print them to PDF and go from there?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you're wanting to still create a report in CAD, here's a quick LISP to do such:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(command (addreport "REPORT NAME" (ssget "all") (list pt1 pt2 pt3)))&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;where "pt1" "pt2" "pt3" are x,y,z coordinates you define eary on in the LISP using (setq pt1 "NUMBER"), etc.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2015 22:51:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5517619#M538</guid>
      <dc:creator>jmerch</dc:creator>
      <dc:date>2015-02-23T22:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: ADDREPORT DIALOGUE BOX - Scripting &amp; Macros</title>
      <link>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5517935#M539</link>
      <description>&lt;P&gt;I need the table to be in a format that i can export it to excel (CSV), so i can merge all files to one file then create reports from excel&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It must be possible - If only i could surpress the dialogue box when it suggests a location to save the csv file it would be great&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm happy i can now add reports to a specific location, however i just want to take it a little further.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Feb 2015 08:06:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5517935#M539</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-24T08:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: ADDREPORT DIALOGUE BOX - Scripting &amp; Macros</title>
      <link>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5528022#M549</link>
      <description>&lt;P&gt;With Bluebeam you can export a pdf report into Excel. I believe you can also do this with Adobe. We do it all the time here. Maybe someday Autodesk will make it possible to send our reports straight to Excel. One can always hope!&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2015 14:51:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5528022#M549</guid>
      <dc:creator>davidronson</dc:creator>
      <dc:date>2015-03-04T14:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: ADDREPORT DIALOGUE BOX - Scripting &amp; Macros</title>
      <link>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5619719#M586</link>
      <description>What about CSVEXPORT command in Fabrication CADMEP?</description>
      <pubDate>Mon, 04 May 2015 12:36:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/5619719#M586</guid>
      <dc:creator>MOatman</dc:creator>
      <dc:date>2015-05-04T12:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: ADDREPORT DIALOGUE BOX - Scripting &amp; Macros</title>
      <link>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/6318126#M1105</link>
      <description>&lt;P&gt;CSVEXPORT can be used like ADDREPORT in LISP form so you can setup a CSV report and call it using (csvexport "report name").&lt;/P&gt;&lt;P&gt;This would be your automation and export to Excel all in one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2016 14:35:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fabrication-cadmep-forum/addreport-dialogue-box-scripting-amp-macros/m-p/6318126#M1105</guid>
      <dc:creator>cam-nav</dc:creator>
      <dc:date>2016-05-10T14:35:42Z</dc:date>
    </item>
  </channel>
</rss>

