<?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 Betreff: Excel location in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10414187#M48673</link>
    <description>&lt;P&gt;Make sure this is checked :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="laurentfinetAF8M9_0-1624449927592.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/933522iDB199C7C9B34D6CA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="laurentfinetAF8M9_0-1624449927592.png" alt="laurentfinetAF8M9_0-1624449927592.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FINET L.&lt;/P&gt;</description>
    <pubDate>Wed, 23 Jun 2021 12:05:44 GMT</pubDate>
    <dc:creator>FINET_Laurent</dc:creator>
    <dc:date>2021-06-23T12:05:44Z</dc:date>
    <item>
      <title>Excel location</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10413545#M48669</link>
      <description>&lt;P&gt;I have an assy linked to an excel file.&lt;BR /&gt;This link was made with ilogic.&lt;BR /&gt;I cannot link or embed an .xslm file from Inventor.&lt;BR /&gt;The location of the excel file is stated in the ilogic code.&lt;BR /&gt;Everything is in Vault Basic.&lt;BR /&gt;When I make a Copy Design, the code keeps pointing to the same location.&lt;BR /&gt;How can I set up the ilogic code so that it is automatically pointed to the new location.&lt;/P&gt;&lt;P&gt;Or is there an action to add that the user has to select the new location and this is copied into the ilogic code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;'Koppelen van artikelnr vanuit de BOM In Excel naar de Configurator sheet.&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;userParams&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;UserParameters&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;Parameters&lt;/SPAN&gt;.&lt;SPAN&gt;UserParameters&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;excelFileLocation&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;"D:\$WorkingFolder\Vault Workspace\02_Basis ontwerpen\02_8_Bedienbaar daklicht\02_8_02_Vast\BoM Passiefhuis Daklicht 05-07-2019V1.xlsm"&lt;/SPAN&gt;
&lt;SPAN&gt;work&lt;/SPAN&gt; = &lt;SPAN&gt;GoExcel&lt;/SPAN&gt;.&lt;SPAN&gt;FindRow&lt;/SPAN&gt;(&lt;SPAN&gt;excelFileLocation&lt;/SPAN&gt;, &lt;SPAN&gt;"Configurator"&lt;/SPAN&gt;, &lt;SPAN&gt;"Artikelnr"&lt;/SPAN&gt;, &lt;SPAN&gt;"="&lt;/SPAN&gt;, &lt;SPAN&gt;Artikelnr&lt;/SPAN&gt;)


&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;param&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;userParams&lt;/SPAN&gt;
	&lt;SPAN&gt;Try&lt;/SPAN&gt;
		&lt;SPAN&gt;Parameter&lt;/SPAN&gt;(&lt;SPAN&gt;param&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt;) = &lt;SPAN&gt;GoExcel&lt;/SPAN&gt;.&lt;SPAN&gt;CurrentRowValue&lt;/SPAN&gt;(&lt;SPAN&gt;param&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt;)
		&lt;SPAN&gt;Catch&lt;/SPAN&gt;
		&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Try&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt;

&lt;SPAN&gt;iLogicVb&lt;/SPAN&gt;.&lt;SPAN&gt;UpdateWhenDone&lt;/SPAN&gt; = &lt;SPAN&gt;True&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I saw the code below but that was explained when the excel file was embedded.&lt;/P&gt;&lt;P&gt;But you can't link or embed an .xlsm file.&lt;/P&gt;&lt;P&gt;Dim oDocument As Document&lt;BR /&gt;Set oDocument = ThisApplication.ActiveDocument&lt;BR /&gt;'Delete original reference&lt;BR /&gt;Dim oD As ReferencedOLEFileDescriptor&lt;BR /&gt;Set oD = oDocument.ReferencedOLEFileDescriptors.ItemByName("aa.xlsx")&lt;BR /&gt;oD.Delete&lt;/P&gt;&lt;P&gt;'Add new reference with updated project location&lt;BR /&gt;Call oDs.Add(ProjectLocation + "\aa.xlsx", kOLEDocumentLinkObject)&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 07:29:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10413545#M48669</guid>
      <dc:creator>jostroopers</dc:creator>
      <dc:date>2021-06-23T07:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Excel location</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10413580#M48670</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you could do is have the excel file always in the same folder as the assembly document.&lt;/P&gt;&lt;P&gt;You could then get the current document path, remove the document display name from it, and add the excel file name.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FINET L.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 07:46:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10413580#M48670</guid>
      <dc:creator>FINET_Laurent</dc:creator>
      <dc:date>2021-06-23T07:46:31Z</dc:date>
    </item>
    <item>
      <title>Betreff: Excel location</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10413724#M48671</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9053366"&gt;@FINET_Laurent&lt;/a&gt;&amp;nbsp; suggested, if the Excel file is located in the same folder as the document we can use the API to get the folder dynamically. Is the filename of Excelfile and Document the same (except extension) ?&lt;/P&gt;&lt;P&gt;Then we can use it too. We should insert an alternative way to select the file with a dialog, in case the generated path is wrong.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;'Koppelen van artikelnr vanuit de BOM In Excel naar de Configurator sheet.
Dim userParams As UserParameters = ThisApplication.ActiveDocument.ComponentDefinition.Parameters.UserParameters
Dim sPath As String = ThisDoc.PathAndFileName(False)
Dim excelFileLocation As String = sPath &amp;amp; ".xlsm" '"D:\$WorkingFolder\Vault Workspace\02_Basis ontwerpen\02_8_Bedienbaar daklicht\02_8_02_Vast\BoM Passiefhuis Daklicht 05-07-2019V1.xlsm"

If System.IO.File.Exists(excelFileLocation) = False Then
	' Create a new FileDialog object.
    Dim oFileDlg As FileDialog
    Call ThisApplication.CreateFileDialog(oFileDlg)

    oFileDlg.Filter = "Excel Files (*.xls;*.xlsx;*.xlsm)|*.xls;*.xlsx;*.xlsm|All Files (*.*)|*.*"
    oFileDlg.FilterIndex = 1
    oFileDlg.DialogTitle = "Open Excel File"
	oFileDlg.InitialDirectory = ThisDoc.Path 
    oFileDlg.ShowOpen

    If oFileDlg.FileName &amp;lt;&amp;gt; "" Then
         excelFileLocation = oFileDlg.FileName
	 Else 
		 Exit Sub
    End If
End If

work = GoExcel.FindRow(excelFileLocation, "Configurator", "Artikelnr", "=", Artikelnr)

For Each param In userParams
	Try
		Parameter(param.Name) = GoExcel.CurrentRowValue(param.Name)
		Catch
		End Try
Next

iLogicVb.UpdateWhenDone = True&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 23 Jun 2021 08:52:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10413724#M48671</guid>
      <dc:creator>Ralf_Krieg</dc:creator>
      <dc:date>2021-06-23T08:52:36Z</dc:date>
    </item>
    <item>
      <title>Betreff: Excel location</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10414181#M48672</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564136"&gt;@Ralf_Krieg&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the excel file in the same folder as the Inventor model.&lt;BR /&gt;When I run the rule, the location is opened and I can click on the excel file and it is linked again.&lt;BR /&gt;If I make a change in the excel file, my model is updated properly.&lt;BR /&gt;However, when I now save my model, I am again asked for the excel file and I have to select it again in the opened folder.&lt;BR /&gt;Even if I change a parameter in a part, I am asked again for the excel file and the location is opened and I have to select the excel file again.&lt;BR /&gt;It would be nice if the first time the excel file is selected, you are no longer asked for it.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 12:03:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10414181#M48672</guid>
      <dc:creator>jostroopers</dc:creator>
      <dc:date>2021-06-23T12:03:00Z</dc:date>
    </item>
    <item>
      <title>Betreff: Excel location</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10414187#M48673</link>
      <description>&lt;P&gt;Make sure this is checked :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="laurentfinetAF8M9_0-1624449927592.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/933522iDB199C7C9B34D6CA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="laurentfinetAF8M9_0-1624449927592.png" alt="laurentfinetAF8M9_0-1624449927592.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FINET L.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 12:05:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10414187#M48673</guid>
      <dc:creator>FINET_Laurent</dc:creator>
      <dc:date>2021-06-23T12:05:44Z</dc:date>
    </item>
    <item>
      <title>Betreff: Excel location</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10414584#M48674</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9053366"&gt;@FINET_Laurent&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I checked that option but when i save the model it still ask for the Excel file.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 14:00:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10414584#M48674</guid>
      <dc:creator>jostroopers</dc:creator>
      <dc:date>2021-06-23T14:00:14Z</dc:date>
    </item>
    <item>
      <title>Betreff: Excel location</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10414602#M48675</link>
      <description>&lt;P&gt;Maybe there is an even triggering the rule when saving the document.&lt;/P&gt;&lt;P&gt;Have a look inside this menu : Manage tab -&amp;gt; iLogic&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="laurentfinetAF8M9_0-1624456967910.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/933600i8BFF7CA52F66C39A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="laurentfinetAF8M9_0-1624456967910.png" alt="laurentfinetAF8M9_0-1624456967910.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="laurentfinetAF8M9_1-1624457028977.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/933602i64CE9C5D9D88D4C1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="laurentfinetAF8M9_1-1624457028977.png" alt="laurentfinetAF8M9_1-1624457028977.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards, FINET L.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 14:04:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10414602#M48675</guid>
      <dc:creator>FINET_Laurent</dc:creator>
      <dc:date>2021-06-23T14:04:06Z</dc:date>
    </item>
    <item>
      <title>Betreff: Excel location</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10429303#M48676</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564136"&gt;@Ralf_Krieg&lt;/a&gt;&amp;nbsp;Is it possible that the excel sheet gets opened after this rule is run.&lt;BR /&gt;I can then immediately enter the desired information and update my model.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jun 2021 13:41:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10429303#M48676</guid>
      <dc:creator>jostroopers</dc:creator>
      <dc:date>2021-06-29T13:41:47Z</dc:date>
    </item>
    <item>
      <title>Betreff: Excel location</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10430249#M48677</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've added a short line to open file in Excel. Don't forget to add the first to lines to Header section of your rule.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;AddReference "microsoft.office.interop.excel.dll"
Imports XL = Microsoft.Office.Interop.Excel

Private Sub Main
	
'Koppelen van artikelnr vanuit de BOM In Excel naar de Configurator sheet.
Dim userParams As UserParameters = ThisApplication.ActiveDocument.ComponentDefinition.Parameters.UserParameters
Dim sPath As String = ThisDoc.PathAndFileName(False)
Dim excelFileLocation As String = sPath &amp;amp; ".xlsm" '"D:\$WorkingFolder\Vault Workspace\02_Basis ontwerpen\02_8_Bedienbaar daklicht\02_8_02_Vast\BoM Passiefhuis Daklicht 05-07-2019V1.xlsm"

If System.IO.File.Exists(excelFileLocation) = False Then
	' Create a new FileDialog object.
    Dim oFileDlg As FileDialog
    Call ThisApplication.CreateFileDialog(oFileDlg)

    oFileDlg.Filter = "Excel Files (*.xls;*.xlsx;*.xlsm)|*.xls;*.xlsx;*.xlsm|All Files (*.*)|*.*"
    oFileDlg.FilterIndex = 1
    oFileDlg.DialogTitle = "Open Excel File"
	oFileDlg.InitialDirectory = ThisDoc.Path 
    oFileDlg.ShowOpen

    If oFileDlg.FileName &amp;lt;&amp;gt; "" Then
         excelFileLocation = oFileDlg.FileName
	 Else 
		 Exit Sub
    End If
End If

work = GoExcel.FindRow(excelFileLocation, "Configurator", "Artikelnr", "=", Artikelnr)

For Each param In userParams
	Try
		Parameter(param.Name) = GoExcel.CurrentRowValue(param.Name)
		Catch
		End Try
Next

iLogicVb.UpdateWhenDone = True

'try open the file in Excel
OpenExcelFile(excelFileLocation)

End Sub

Private Sub OpenExcelFile(ByVal ExcelPath As String)

    Dim oExcelApp As XL.Application = GetObject("","Excel.Application")
	If oExcelApp Is Nothing Then
		MsgBox("Unable to start Excel")
		Exit Sub
	End If
	
    Dim oWB As xl.Workbook = oExcelApp.Workbooks.Open(ExcelPath)
    oExcelApp.Visible = True
	
End Sub&lt;/LI-CODE&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>Tue, 29 Jun 2021 19:45:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10430249#M48677</guid>
      <dc:creator>Ralf_Krieg</dc:creator>
      <dc:date>2021-06-29T19:45:38Z</dc:date>
    </item>
    <item>
      <title>Betreff: Excel location</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10431300#M48678</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564136"&gt;@Ralf_Krieg&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But when i put the code in ilogic the firts two lines put into the Header. Is that normal?&lt;/P&gt;&lt;P&gt;I can't put them above Privat Sub Main.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jostroopers_0-1625033803286.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/935951iF838DC099552034B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jostroopers_0-1625033803286.png" alt="jostroopers_0-1625033803286.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When i run the rule i get an error.&lt;/P&gt;&lt;P&gt;Excel is not opening the file.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jostroopers_1-1625033901878.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/935952iA621F8167FC444E5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jostroopers_1-1625033901878.png" alt="jostroopers_1-1625033901878.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;More info:&lt;/P&gt;&lt;P&gt;System.InvalidCastException: Unable to cast COM object of type 'Microsoft.Office.Interop.Excel.ApplicationClass' to interface type 'Microsoft.Office.Interop.Excel._Application'.&lt;BR /&gt;This operation failed because the QueryInterface call on the COM component for the interface with IID '{000208D5-0000-0000-C000-000000000046}' failed due to the following error: Element not found.&lt;BR /&gt;(Exception from HRESULT: 0x8002802B (TYPE_E_ELEMENTNOTFOUND)).&lt;BR /&gt;at System.StubHelpers.StubHelpers.GetCOMIPFromRCW(Object objSrc, IntPtr pCPCMD, IntPtr&amp;amp; ppTarget, Boolean&amp;amp; pfNeedsRelease)&lt;BR /&gt;at Microsoft.Office.Interop.Excel.ApplicationClass.get_Workbooks()&lt;BR /&gt;at ThisRule.OpenExcelFile(String ExcelPath)&lt;BR /&gt;at ThisRule.Main()&lt;BR /&gt;at Autodesk.iLogic.Exec.AppDomExec.ExecRuleInAssembly(Assembly assem)&lt;BR /&gt;at iLogic.RuleEvalContainer.ExecRuleEval(String execRule)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 06:20:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10431300#M48678</guid>
      <dc:creator>jostroopers</dc:creator>
      <dc:date>2021-06-30T06:20:44Z</dc:date>
    </item>
    <item>
      <title>Betreff: Excel location</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10432558#M48679</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is normal, the two lines are for the Header section.&lt;/P&gt;&lt;P&gt;Which version of Excel is installed on your PC?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jun 2021 14:17:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10432558#M48679</guid>
      <dc:creator>Ralf_Krieg</dc:creator>
      <dc:date>2021-06-30T14:17:45Z</dc:date>
    </item>
    <item>
      <title>Betreff: Excel location</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10434584#M48680</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564136"&gt;@Ralf_Krieg&lt;/a&gt;&amp;nbsp;we hebben office 2016&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jostroopers_0-1625118824240.png" style="width: 731px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/936438iE459BA87DF952E32/image-dimensions/731x21?v=v2" width="731" height="21" role="button" title="jostroopers_0-1625118824240.png" alt="jostroopers_0-1625118824240.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 05:54:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10434584#M48680</guid>
      <dc:creator>jostroopers</dc:creator>
      <dc:date>2021-07-01T05:54:23Z</dc:date>
    </item>
    <item>
      <title>Betreff: Excel location</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10434696#M48681</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This problem is often caused by installing a newer Office version and downgrade to an older version. Can you try a Quick repair of Office from Control panel? If this don't work you can try delete (Export Key before to have a backup!!!) this RegKey:&lt;/P&gt;&lt;P&gt;- right mouse click on Start button&lt;/P&gt;&lt;P&gt;- select "Run..."&lt;/P&gt;&lt;P&gt;- type "regedit" and hit OK&lt;/P&gt;&lt;P&gt;- under HKEY_CLASSES_ROOT/TypeLib search for {00020813-0000-0000-C000-000000000046} and if exist delete Keys "1.9"/"1.8"/"1.7"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure if Office needs to be 64-bit for 64-bit Inventor, but that is my next point to think of.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 07:09:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10434696#M48681</guid>
      <dc:creator>Ralf_Krieg</dc:creator>
      <dc:date>2021-07-01T07:09:59Z</dc:date>
    </item>
    <item>
      <title>Betreff: Excel location</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10437580#M48682</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564136"&gt;@Ralf_Krieg&lt;/a&gt;&amp;nbsp;thanks for your reaction.&lt;/P&gt;&lt;P&gt;I did the regedit but that was not the solution.&lt;/P&gt;&lt;P&gt;I had a 32 bits office version and installed a 64 bits version.&lt;/P&gt;&lt;P&gt;And that was the solution.&lt;/P&gt;&lt;P&gt;Now it opens excel when i run the rule.&lt;/P&gt;&lt;P&gt;Great, thanks for the tips.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2021 05:13:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/excel-location/m-p/10437580#M48682</guid>
      <dc:creator>jostroopers</dc:creator>
      <dc:date>2021-07-02T05:13:54Z</dc:date>
    </item>
  </channel>
</rss>

