<?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 move a part into an existing folder in an assembly? in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/how-to-move-a-part-into-an-existing-folder-in-an-assembly/m-p/10940453#M84710</link>
    <description>&lt;P&gt;Nice instructions you have there. I finished off a more usable ilogic rule and posted it in the ideas post &lt;A href="https://forums.autodesk.com/t5/inventor-ideas/what-we-need-is-a-way-to-quot-add-selected-components-to-an/idi-p/7604929" target="_blank" rel="noopener"&gt;here.&lt;/A&gt;&amp;nbsp; &amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3323487"&gt;@Gabriel_Watson&lt;/a&gt;&amp;nbsp;kindly located this post earlier for us to vote up. As you have suggested typing in a folder name each time is a workable solution but not optimal, less typing and more action is what I like to see. The rule&amp;nbsp; allows you to window select the components before you run the rule or to pick each one separately after the rule starts and also you have the option of selecting an existing folder or if you like create a new one.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Feb 2022 22:14:32 GMT</pubDate>
    <dc:creator>A.Acheson</dc:creator>
    <dc:date>2022-02-09T22:14:32Z</dc:date>
    <item>
      <title>How to move a part into an existing folder in an assembly?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/how-to-move-a-part-into-an-existing-folder-in-an-assembly/m-p/10930986#M84706</link>
      <description>&lt;P&gt;I have an assembly in Inventor with about 3500 parts. I'm trying to organize these parts into folders.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The way I've figured out to move a part into an existing folder is to left-click the part in the hierarchy and then to drag it into the folder.&amp;nbsp;This works fine, but it's very slow when clicking &amp;amp; dragging a part past several thousand other parts in the hierarchy to move it into the folder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are there any other ways to move a part into an existing folder besides clicking &amp;amp; dragging?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In case it helps to answer my question, I've attached a screenshot of the assembly hierarchy.&amp;nbsp; It contains a folder I made called "MyFolder", which has two parts in it.&amp;nbsp; When I right-click on other parts in the hierarchy, e.g. Solid3:1 in this screenshot, I don't see any options for moving the part directly into "MyFolder".&amp;nbsp; I can only click &amp;amp; drag it into "MyFolder" (or add it to a new folder).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried clicking &amp;amp; dragging parts from the viewport into "MyFolder" but that didn't work.&amp;nbsp; And right-clicking on parts in the viewport doesn't give any obvious options for moving them to an existing folder, although I can add them to a new folder by doing that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This assembly originated as a STEP file with approximately 3500 separate solid bodies.&amp;nbsp; I imported the STEP file into Inventor and then converted it to an assembly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm new to Inventor so I might be missing something obvious... any help would be appreciated.&lt;/P&gt;</description>
      <pubDate>Sat, 05 Feb 2022 21:16:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/how-to-move-a-part-into-an-existing-folder-in-an-assembly/m-p/10930986#M84706</guid>
      <dc:creator>patrick.r.cantwell</dc:creator>
      <dc:date>2022-02-05T21:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to move a part into an existing folder in an assembly?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/how-to-move-a-part-into-an-existing-folder-in-an-assembly/m-p/10931293#M84707</link>
      <description>&lt;P&gt;You could just window on screen to select the parts,&amp;nbsp; click on selected browser node and right click and add to new folder, move folder into my folder. Then delete any folder you don't need. The parts will simply move up the hierarchy inside the folder.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is an ilogic method to add directly to a folder. You can select the folder or create a new folder then select multiple items at a time then press Esc to exit and add the parts to the folder. Code source examples &lt;A href="https://adndevblog.typepad.com/manufacturing/2013/11/do-selection-from-ilogic.html" target="_blank" rel="noopener"&gt;selection of multiple occurrences&lt;/A&gt; and here for the &lt;A href="https://help.autodesk.com/view/INVNTOR/2021/ENU/?guid=GUID-370F3DF4-B6A4-4677-A328-E3C397D1505D" target="_blank" rel="noopener"&gt;Moving browser nodes to a folder&lt;/A&gt;.&amp;nbsp;Try it out on a test assembly and ensure it works as you need.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EDIT: Remove original rule posted as it was not working as expected and also was creating duplicate folders.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Working rule.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFolderName&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;
&lt;SPAN&gt;obj&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;CommandManager&lt;/SPAN&gt;.&lt;SPAN&gt;Pick&lt;/SPAN&gt;(&lt;SPAN&gt;SelectionFilterEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kAllEntitiesFilter&lt;/SPAN&gt;, &lt;SPAN&gt;"Select a Folder, Press Esc when selected or to create a folder"&lt;/SPAN&gt;) 
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFolder&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;BrowserFolder&lt;/SPAN&gt;
&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;TypeOf&lt;/SPAN&gt; &lt;SPAN&gt;obj&lt;/SPAN&gt; &lt;SPAN&gt;Is&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;BrowserFolder&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt; &lt;SPAN&gt;'Check a folder object was selected&lt;/SPAN&gt;
	&lt;SPAN&gt;oFolderName&lt;/SPAN&gt; = &lt;SPAN&gt;obj&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt;
&lt;SPAN&gt;Else&lt;/SPAN&gt;
	&lt;SPAN&gt;oFolderName&lt;/SPAN&gt; = &lt;SPAN&gt;InputBox&lt;/SPAN&gt;(&lt;SPAN&gt;"Enter Name"&lt;/SPAN&gt;, &lt;SPAN&gt;"Folder Name"&lt;/SPAN&gt;, &lt;SPAN&gt;"My Folder"&lt;/SPAN&gt;)
	&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oFolderName&lt;/SPAN&gt; = &lt;SPAN&gt;""&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt; &lt;SPAN&gt;Return&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
	
&lt;SPAN&gt;'[Selecting Component&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;comps&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ObjectCollection&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;comp&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Object&lt;/SPAN&gt;

&lt;SPAN&gt;comps&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN&gt;CreateObjectCollection&lt;/SPAN&gt;

&lt;SPAN&gt;While&lt;/SPAN&gt; &lt;SPAN&gt;True&lt;/SPAN&gt;
	&lt;SPAN&gt;comp&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;CommandManager&lt;/SPAN&gt;.&lt;SPAN&gt;Pick&lt;/SPAN&gt;(&lt;SPAN&gt;SelectionFilterEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kAssemblyOccurrenceFilter&lt;/SPAN&gt;,&lt;SPAN&gt;"Select a component to add to the folder, Press Esc when Complete"&lt;/SPAN&gt;) 	
	&lt;SPAN&gt;' If nothing gets selected then we're done	&lt;/SPAN&gt;
	&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;IsNothing&lt;/SPAN&gt;(&lt;SPAN&gt;comp&lt;/SPAN&gt;) &lt;SPAN&gt;Then&lt;/SPAN&gt; &lt;SPAN&gt;Exit&lt;/SPAN&gt; &lt;SPAN&gt;While&lt;/SPAN&gt;
	
	&lt;SPAN&gt;comps&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;comp&lt;/SPAN&gt;) 
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;While&lt;/SPAN&gt;
&lt;SPAN&gt;']&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyDocument&lt;/SPAN&gt;
 &lt;SPAN&gt;oDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyComponentDefinition&lt;/SPAN&gt;
 &lt;SPAN&gt;oDef&lt;/SPAN&gt; = &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPane&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;BrowserPane&lt;/SPAN&gt;
 &lt;SPAN&gt;oPane&lt;/SPAN&gt; = &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;BrowserPanes&lt;/SPAN&gt;.&lt;SPAN&gt;ActivePane&lt;/SPAN&gt;
 
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oOccurrenceNodes&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ObjectCollection&lt;/SPAN&gt;
 &lt;SPAN&gt;oOccurrenceNodes&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN&gt;CreateObjectCollection&lt;/SPAN&gt;


&lt;SPAN&gt;Try&lt;/SPAN&gt; 
&lt;SPAN&gt;oFolder&lt;/SPAN&gt; = &lt;SPAN&gt;oPane&lt;/SPAN&gt;.&lt;SPAN&gt;TopNode&lt;/SPAN&gt;.&lt;SPAN&gt;BrowserFolders&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oFolderName&lt;/SPAN&gt;)&lt;SPAN&gt;'Get reference to folder object&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFolderBrowserNodes&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;BrowserNodesEnumerator&lt;/SPAN&gt;
&lt;SPAN&gt;oFolderBrowserNodes&lt;/SPAN&gt; = &lt;SPAN&gt;oFolder&lt;/SPAN&gt;.&lt;SPAN&gt;BrowserNode&lt;/SPAN&gt;.&lt;SPAN&gt;BrowserNodes&lt;/SPAN&gt;
&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oNode&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;BrowserNode&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oFolderBrowserNodes&lt;/SPAN&gt; &lt;SPAN&gt;'cycle through contents of the folder&lt;/SPAN&gt;
	&lt;SPAN&gt;comp&lt;/SPAN&gt; = &lt;SPAN&gt;oNode&lt;/SPAN&gt;.&lt;SPAN&gt;NativeObject&lt;/SPAN&gt; &lt;SPAN&gt;'Get occurrence object&lt;/SPAN&gt;
	&lt;SPAN&gt;comps&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;comp&lt;/SPAN&gt;) &lt;SPAN&gt;' add occurrence object to occurrence collection&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt;
&lt;SPAN&gt;oFolder&lt;/SPAN&gt;.&lt;SPAN&gt;Delete&lt;/SPAN&gt; &lt;SPAN&gt;'Delete folder to remove duplicate from being added later&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;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;comp&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;comps&lt;/SPAN&gt; &lt;SPAN&gt;'Cycle Through occurrence collection&lt;/SPAN&gt;
    &lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oNode&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;BrowserNode&lt;/SPAN&gt;
    &lt;SPAN&gt;oNode&lt;/SPAN&gt; = &lt;SPAN&gt;oPane&lt;/SPAN&gt;.&lt;SPAN&gt;GetBrowserNodeFromObject&lt;/SPAN&gt;(&lt;SPAN&gt;comp&lt;/SPAN&gt;) 
	&lt;SPAN&gt;oOccurrenceNodes&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;oNode&lt;/SPAN&gt;)
&lt;SPAN&gt;Next&lt;/SPAN&gt;
	 
&lt;SPAN&gt;oPane&lt;/SPAN&gt;.&lt;SPAN&gt;AddBrowserFolder&lt;/SPAN&gt;(&lt;SPAN&gt;oFolderName&lt;/SPAN&gt;, &lt;SPAN&gt;oOccurrenceNodes&lt;/SPAN&gt;)&lt;SPAN&gt;'Add Folder and OccurrenceNodes&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 06 Feb 2022 22:57:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/how-to-move-a-part-into-an-existing-folder-in-an-assembly/m-p/10931293#M84707</guid>
      <dc:creator>A.Acheson</dc:creator>
      <dc:date>2022-02-06T22:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to move a part into an existing folder in an assembly?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/how-to-move-a-part-into-an-existing-folder-in-an-assembly/m-p/10931303#M84708</link>
      <description>&lt;P&gt;I think only through iLogic, unfortunately:&lt;BR /&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-ilogic-api-vba-forum/adding-file-to-a-browser-folder/td-p/3535756" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/inventor-ilogic-api-vba-forum/adding-file-to-a-browser-folder/td-p/3535756&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://go.d3tech.net/inventor-blog/inventor-tips-and-tricks-using-ilogic-to-automatically-place-components-in-assembly-folders" target="_blank"&gt;https://go.d3tech.net/inventor-blog/inventor-tips-and-tricks-using-ilogic-to-automatically-place-components-in-assembly-folders&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But your idea of right-click and having some sort of "select folder" submenu option is a good hint for the UI devs. I think it is worth pushing that more in the Inventor Ideas page, since it looks like it's been 5 years &lt;SPAN&gt;Chris Fritsche&lt;/SPAN&gt;&amp;nbsp;has posted it there:&lt;BR /&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-ideas/what-we-need-is-a-way-to-quot-add-selected-components-to-an/idi-p/7604929" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/inventor-ideas/what-we-need-is-a-way-to-quot-add-selected-components-to-an/idi-p/7604929&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 06 Feb 2022 03:49:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/how-to-move-a-part-into-an-existing-folder-in-an-assembly/m-p/10931303#M84708</guid>
      <dc:creator>Gabriel_Watson</dc:creator>
      <dc:date>2022-02-06T03:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to move a part into an existing folder in an assembly?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/how-to-move-a-part-into-an-existing-folder-in-an-assembly/m-p/10940351#M84709</link>
      <description>&lt;P&gt;Thank you both for the helpful answers.&amp;nbsp; I had to watch a couple of Autodesk University courses on iLogic to understand how it works, which is the reason for my delayed response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A. Acheson's methods both work and are much faster than what I was doing before.&amp;nbsp;&amp;nbsp;I'll summarize the steps for others who might be interested:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Method #1 (add parts to new folder, move new folder into existing folder, delete new folder):&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Select the part(s) you want to add to the existing folder&lt;/LI&gt;&lt;LI&gt;Right-click and select "Add to New Folder"&lt;/LI&gt;&lt;LI&gt;Drag &amp;amp; drop this new folder into the existing folder&lt;/LI&gt;&lt;LI&gt;Then, right-click on the new folder and delete it.&amp;nbsp; Only the folder will be deleted.&amp;nbsp; The parts that were in it will be contained in the existing folder.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Method #2 (iLogic)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;a) Setting up the iLogic:&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Click the &lt;STRONG&gt;+&lt;/STRONG&gt; button next to the &lt;STRONG&gt;Model&lt;/STRONG&gt; tab and select &lt;STRONG&gt;iLogic&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;In the &lt;STRONG&gt;iLogic&lt;/STRONG&gt;&amp;nbsp;tab, right-click in the blank area and select &lt;STRONG&gt;Add Rule&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Give the new rule a good name (e.g., "Add Parts to Existing Folder")&lt;/LI&gt;&lt;LI&gt;In the &lt;STRONG&gt;Edit Rule&lt;/STRONG&gt; dialog box, copy &amp;amp; paste A. Acheson's iLogic code into the code area&lt;/LI&gt;&lt;LI&gt;Click "&lt;STRONG&gt;Save&lt;/STRONG&gt;" and "&lt;STRONG&gt;Close&lt;/STRONG&gt;"&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;STRONG&gt;b) Running the iLogic rule (do this every time you want to add more parts to an existing folder):&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;In the &lt;STRONG&gt;iLogic&lt;/STRONG&gt; tab, right-click the rule and select &lt;STRONG&gt;Run Rule&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;In the &lt;STRONG&gt;Model&lt;/STRONG&gt; tab, click on the existing folder you want to add parts to (the tool tip by the cursor tells you to do this; if you don't click a folder it will prompt you for it)&lt;/LI&gt;&lt;LI&gt;Then, in either the &lt;STRONG&gt;Model &lt;/STRONG&gt;tab or the &lt;STRONG&gt;Viewport&lt;/STRONG&gt;, click all the parts you want to add to the folder (the tool tip by the cursor tells you do to this).&amp;nbsp; You don't need to shift-select the parts.&amp;nbsp; Any parts you click will be added.&lt;/LI&gt;&lt;LI&gt;Press the &lt;STRONG&gt;Esc&lt;/STRONG&gt; key when you finish selecting parts.&amp;nbsp; They will be added to the folder you chose.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I might eventually try writing a plug-in to get a right-click option to add parts directly to an existing folder, since it would be even faster than these two solutions (fewer clicks).&amp;nbsp; But these two methods are probably good enough for now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 21:31:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/how-to-move-a-part-into-an-existing-folder-in-an-assembly/m-p/10940351#M84709</guid>
      <dc:creator>patrick.r.cantwell</dc:creator>
      <dc:date>2022-02-09T21:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to move a part into an existing folder in an assembly?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/how-to-move-a-part-into-an-existing-folder-in-an-assembly/m-p/10940453#M84710</link>
      <description>&lt;P&gt;Nice instructions you have there. I finished off a more usable ilogic rule and posted it in the ideas post &lt;A href="https://forums.autodesk.com/t5/inventor-ideas/what-we-need-is-a-way-to-quot-add-selected-components-to-an/idi-p/7604929" target="_blank" rel="noopener"&gt;here.&lt;/A&gt;&amp;nbsp; &amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3323487"&gt;@Gabriel_Watson&lt;/a&gt;&amp;nbsp;kindly located this post earlier for us to vote up. As you have suggested typing in a folder name each time is a workable solution but not optimal, less typing and more action is what I like to see. The rule&amp;nbsp; allows you to window select the components before you run the rule or to pick each one separately after the rule starts and also you have the option of selecting an existing folder or if you like create a new one.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 22:14:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/how-to-move-a-part-into-an-existing-folder-in-an-assembly/m-p/10940453#M84710</guid>
      <dc:creator>A.Acheson</dc:creator>
      <dc:date>2022-02-09T22:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to move a part into an existing folder in an assembly?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/how-to-move-a-part-into-an-existing-folder-in-an-assembly/m-p/10941839#M84711</link>
      <description>&lt;P&gt;Thanks for the updated rule.&amp;nbsp; I like that the components can be selected before selecting the folder.&amp;nbsp; I didn't notice that before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also found that the iLogic panel can be popped out, so there is no need to tab back and forth between the iLogic and Model panels when adding parts to folders (fewer mouse clicks).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 12:13:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/how-to-move-a-part-into-an-existing-folder-in-an-assembly/m-p/10941839#M84711</guid>
      <dc:creator>patrick.r.cantwell</dc:creator>
      <dc:date>2022-02-10T12:13:20Z</dc:date>
    </item>
  </channel>
</rss>

