<?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: VBA for automatic data generation to Excel in Robot Structural Analysis Forum</title>
    <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5519465#M68578</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dim robapp As New RobotApplication&lt;BR /&gt;Dim section As RobotLabel&lt;BR /&gt;Set section = robapp.Project.Structure.Labels.Create(I_LT_BAR_SECTION, "pipe")&lt;BR /&gt;Dim sectionData As RobotBarSectionData&lt;BR /&gt;Set sectionData = section.Data&lt;BR /&gt;sectionData.ShapeType = I_BSST_USER_CIRC_FILLED&lt;BR /&gt;sectionData.Type = I_BST_NS_TUBE&lt;BR /&gt;Dim ns As RobotBarSectionNonstdData&lt;BR /&gt;Set ns = sectionData.CreateNonstd(0)&lt;BR /&gt;ns.SetValue I_BSNDV_TUBE_D, 0.3&lt;BR /&gt;sectionData.CalcNonstdGeometry&lt;BR /&gt;robapp.Project.Structure.Labels.Store section&lt;/P&gt;</description>
    <pubDate>Wed, 25 Feb 2015 08:04:23 GMT</pubDate>
    <dc:creator>marcinrakus</dc:creator>
    <dc:date>2015-02-25T08:04:23Z</dc:date>
    <item>
      <title>(API) VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5510307#M68572</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am student and I am working on my master thesis. I came to the dead end and I need help with VBA.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Basically what I do is I take take initial strees (lets say 100 MPa), &amp;nbsp;calculate relative elongation, and then apply it on the cable. Then I run analysis, and copy node results to excel for displacement and streesses in bars. Then I repeat the same procedure with 200 MPa, but the results are copied to table after previous results and then I continue with 300MPa, until 800MPa. After the procedure above I change, lets say, cables to bigger section and I start all over again. Then changing bars.&amp;nbsp;I think you got the Idea.&amp;nbsp;It is very time consuming and you have to be very careful with what and where you copy.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know it is possible to write VBA for this repeated actions, but I have not mastered VBA and can do only simple code. I have tried to read API tutorial for Robot but i got lost. Could someone help me with this automatic data generation VBA?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I imagine proceadure should be as follows:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN&gt;VBA reads a range of relative elongation values (or maybe there schould be a step increment)&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;It applies it to cable prestress value&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Robot runs calculation&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;VBA copies Displacements of nodes to one sheet and stresses to another.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;VBA applies another relative elangation for cable,&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Robot runs analysis&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;and so on.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;Copied results schould build one after another to one table.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I attach my Robot and excel file.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have tried to generate some results manualy, it took me about one day, when I realized I have forgoten to change applied force value, after modifying my structure. So that means all that work went for nothing. Please help me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry for my English, I am not a native speaker.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Apr 2015 07:25:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5510307#M68572</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-01T07:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5510835#M68573</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've prepared for You some sample&amp;nbsp;snippets for things You need for Your macro.&lt;/P&gt;&lt;P&gt;What You need is to adapt variables and put it in apropriate loops.&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dim robApp As New RobotApplication&lt;/P&gt;&lt;P&gt;'creating cable label&lt;BR /&gt;Dim cable As RobotLabel&lt;BR /&gt;Dim cableData As RobotBarCableData&lt;BR /&gt;Set cable = robApp.Project.Structure.Labels.Create(I_LT_BAR_CABLE, "cable1")&lt;BR /&gt;Set cableData = cable.Data&lt;BR /&gt;cableData.SectionAX = 0.01&lt;BR /&gt;cableData.AssemblingParam = I_BCAPT_ELONGATION_DL_RELATIVE&lt;BR /&gt;cableData.AssemblingParamValue = -0.00001&lt;BR /&gt;cableData.MaterialName = "Steel"&lt;BR /&gt;robApp.Project.Structure.Labels.Store cable&lt;/P&gt;&lt;P&gt;'assigning label to bar&lt;BR /&gt;Dim robotBar As robotBar&lt;BR /&gt;Dim barNumber As Integer&lt;BR /&gt;barNumber = 1&lt;BR /&gt;Set robotBar = robApp.Project.Structure.Bars.Get(barNumber)&lt;BR /&gt;robotBar.SetLabel I_LT_BAR_CABLE, "cable1"&lt;/P&gt;&lt;P&gt;'modification of label&lt;BR /&gt;Set cable = robApp.Project.Structure.Labels.Get(I_LT_BAR_CABLE, "cable1")&lt;BR /&gt;Set cableData = cable.Data&lt;BR /&gt;cableData.SectionAX = 0.01&lt;BR /&gt;cableData.AssemblingParam = I_BCAPT_ELONGATION_DL_RELATIVE&lt;BR /&gt;cableData.AssemblingParamValue = -0.00001&lt;BR /&gt;cableData.MaterialName = "Steel"&lt;BR /&gt;robApp.Project.Structure.Labels.Store cable&lt;/P&gt;&lt;P&gt;'calculations&lt;BR /&gt;robApp.Project.CalcEngine.Calculate&lt;/P&gt;&lt;P&gt;'getting displacements from nodes&lt;BR /&gt;Dim caseNumber As Integer&lt;BR /&gt;caseNumber = 1&lt;BR /&gt;Dim nodeNumber As Integer&lt;BR /&gt;nodeNumber = 1&lt;BR /&gt;Dim displacements As RobotNodeDisplacementData&lt;BR /&gt;Set displacements = robApp.Project.Structure.Results.Nodes.displacements.Value(nodeNumber, caseNumber)&lt;BR /&gt;MsgBox (displacements.UZ) 'eg&lt;/P&gt;&lt;P&gt;'getting results from bars&lt;BR /&gt;Dim stresses As RobotBarStressData&lt;BR /&gt;Dim position As Double&lt;BR /&gt;position = 0.5&lt;BR /&gt;Set stresses = robApp.Project.Structure.Results.Bars.stresses.Value(barNumber, caseNumber, position)&lt;BR /&gt;MsgBox (stresses.Smax) 'eg&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If there is something missing and You don't &amp;nbsp;find solution by analogy to above let know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS. Of course You need to add reference (Tools/References) to Robot API (Robot Object Model).&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2015 08:59:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5510835#M68573</guid>
      <dc:creator>marcinrakus</dc:creator>
      <dc:date>2015-02-18T08:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5516186#M68574</link>
      <description>&lt;P&gt;Thank you for your guidance,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am still working on my macro and step by step I hope I will get it to work as I need.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Two more questions:&lt;/P&gt;&lt;P&gt;1. When I put "robapp.Project.CalcEngine.Calculate" in the loop, each time it starts new loop Robot asks me if I really want to update database. What is the comand for macro to always accept "yes"&lt;/P&gt;&lt;P&gt;2. Lets say for a loop cycle I put too large pretension and during analysis at some point i get warning message that matrix is not positive defined.&amp;nbsp;&lt;SPAN&gt;What is the comand for macro to always accept "yes" or "no"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks in advance&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Feb 2015 21:47:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5516186#M68574</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-22T21:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5516362#M68575</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;In both cases adding at the beginning&lt;BR /&gt;&lt;BR /&gt;robapp.UserControl = False&lt;BR /&gt;robapp.Interactive = 0&lt;BR /&gt;&lt;BR /&gt;should do the trick. These commands ignore warning and error messages and speed up running of RSA.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2015 06:33:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5516362#M68575</guid>
      <dc:creator>marcinrakus</dc:creator>
      <dc:date>2015-02-23T06:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5516522#M68576</link>
      <description>&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/robot-structural-analysis/api-amp-ignore-dialogue-box/m-p/4904270/highlight/true#M21953" target="_blank"&gt;http://forums.autodesk.com/t5/robot-structural-analysis/api-amp-ignore-dialogue-box/m-p/4904270/highlight/true#M21953&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;additionally&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://forums.autodesk.com/t5/robot-structural-analysis/run-calculation-from-vba-without-any-warnings/m-p/5512972#M30388" target="_blank"&gt;http://forums.autodesk.com/t5/robot-structural-analysis/run-calculation-from-vba-without-any-warnings/m-p/5512972#M30388&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2015 11:03:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5516522#M68576</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2015-02-23T11:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5519119#M68577</link>
      <description>&lt;P&gt;Hello again &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Well, now I have stuck with creating a parametric tube section...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to create solid 3 cm diameter section and I have tried analogy with cable and i did't get it exactly right.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a piece of my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Set section = robapp.Project.Structure.Labels.Create(I_LT_BAR_SECTION, "pipe")&lt;BR /&gt;Set sectionData = section.data&lt;BR /&gt;sectionData.Type = I_BST_STANDARD&lt;BR /&gt;sectionData.ShapeType = I_BSST_CIRC_FILLED&lt;BR /&gt;sectionData.SetValue I_BSDV_D, 3&lt;BR /&gt;robapp.Project.Structure.Labels.Store section&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;could &amp;nbsp;you please write me the whole proceadure like for cables?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Feb 2015 22:26:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5519119#M68577</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-24T22:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5519465#M68578</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dim robapp As New RobotApplication&lt;BR /&gt;Dim section As RobotLabel&lt;BR /&gt;Set section = robapp.Project.Structure.Labels.Create(I_LT_BAR_SECTION, "pipe")&lt;BR /&gt;Dim sectionData As RobotBarSectionData&lt;BR /&gt;Set sectionData = section.Data&lt;BR /&gt;sectionData.ShapeType = I_BSST_USER_CIRC_FILLED&lt;BR /&gt;sectionData.Type = I_BST_NS_TUBE&lt;BR /&gt;Dim ns As RobotBarSectionNonstdData&lt;BR /&gt;Set ns = sectionData.CreateNonstd(0)&lt;BR /&gt;ns.SetValue I_BSNDV_TUBE_D, 0.3&lt;BR /&gt;sectionData.CalcNonstdGeometry&lt;BR /&gt;robapp.Project.Structure.Labels.Store section&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2015 08:04:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5519465#M68578</guid>
      <dc:creator>marcinrakus</dc:creator>
      <dc:date>2015-02-25T08:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5551990#M68579</link>
      <description>&lt;P&gt;It did not work. I managed to do it like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Set section = robapp.Project.Structure.Labels.Create(I_LT_BAR_SECTION, "pipe")&lt;BR /&gt;Set sectionData = section.data&lt;BR /&gt;sectionData.Type = I_BST_NS_TUBE&lt;BR /&gt;sectionData.ShapeType = I_BSST_USER_TUBE&lt;BR /&gt;Set ns = sectionData.CreateNonstd(0)&lt;BR /&gt;ns.SetValue I_BSNDV_TUBE_D, 0.01 * pasp_dia&lt;BR /&gt;sectionData.CalcNonstdGeometry&lt;BR /&gt;robapp.Project.Structure.Labels.Store section&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have one last question, which I could not find on forum.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to extract warning messages during calculation. During my loop calculation at some point my structure gets unstable (stiffnes matarix is negative), but&amp;nbsp;it keeps calculating ignoring this warning. I need to get those warnings, so that later in excel I could filter those (bad) results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Sun, 22 Mar 2015 11:09:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5551990#M68579</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-22T11:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5555343#M68580</link>
      <description>&lt;P&gt;I have one last question, which I could not find on forum.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to extract warning messages during calculation. During my loop calculation at some point my structure gets unstable (stiffnes matarix is negative), but&amp;nbsp;it keeps calculating ignoring this warning. I need to get those warnings, so that later in excel I could filter those (bad) results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 17:06:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5555343#M68580</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-24T17:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5556271#M68581</link>
      <description>Try CalcMessage event or after closing robot extract warnings from robwin.log file.</description>
      <pubDate>Wed, 25 Mar 2015 07:49:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5556271#M68581</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2015-03-25T07:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5561935#M68582</link>
      <description>&lt;P&gt;Ok, I have no clue, how to get it out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried these as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dim msgno As String&lt;BR /&gt;msgno = robapp.IRDimMembCalc.MessagesNum&lt;/P&gt;&lt;P&gt;warningmsg = IRDimMembCalc.GetMessage(msgno, 1)&lt;/P&gt;&lt;P&gt;Cells(1, 27).Value = warningmsg&lt;BR /&gt;&lt;BR /&gt;Cells(1, 24).Value = I_BCW_USER_WARNING&lt;BR /&gt;Cells(1, 25).Value = I_CMSL_WARNING&lt;BR /&gt;Cells(1, 26).Value = I_BCW_USER_WARNING&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dim message As RobotCalcEngine&lt;BR /&gt;Set message = robapp.Project.CalcEngine.CalcMessage(1, 1, 1, 1, 1, 1)&lt;BR /&gt;Cells(1, 17).Value = message&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nothing works &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; As I have told before, I am not that familiar with VBA at all. Could you please write me whole proceadure?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2015 16:21:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5561935#M68582</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-28T16:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5564624#M68583</link>
      <description>&lt;P&gt;See attached xls.&lt;/P&gt;
&lt;P&gt;Check Module1 and Class1 code&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2015 07:57:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5564624#M68583</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2015-03-31T07:57:37Z</dc:date>
    </item>
    <item>
      <title>Re: VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5565903#M68584</link>
      <description>&lt;P&gt;Thank you for you effort but, sorry for being so enoyng... I really feel bad about it...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please look ata my code? I have marked the lines for you, so I would not waste your time anymore.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I feel that I am close, but I am missing something. As far as I understood I cant start the event when I am in the loop...&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2015 21:07:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5565903#M68584</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-31T21:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5566355#M68585</link>
      <description>&lt;P&gt;See Class 1 in attached file&lt;/P&gt;
&lt;P&gt;Warnings displayed in column 17&lt;/P&gt;</description>
      <pubDate>Wed, 01 Apr 2015 07:24:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5566355#M68585</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2015-04-01T07:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: VBA for automatic data generation to Excel</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5571971#M68586</link>
      <description>&lt;P&gt;Thank you very much.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Without your help I would not have done this.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2015 12:28:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-for-automatic-data-generation-to-excel/m-p/5571971#M68586</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-06T12:28:39Z</dc:date>
    </item>
  </channel>
</rss>

