<?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: Exporting multiple dwg with sheet number included in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622823#M59725</link>
    <description>&lt;P&gt;I ran it one more time, on different idw and it worked, but:&lt;/P&gt;&lt;P&gt;the rule creates a singly .pdf file named "part name" - Rev A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I want is to create individual .dwg files named like this:&lt;/P&gt;&lt;P&gt;"sheet number on idw" - "sheet name" or "part name".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess this can be achieved through ilogic only. Any help is appreciated &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 15 Dec 2022 15:29:49 GMT</pubDate>
    <dc:creator>Kramarcik</dc:creator>
    <dc:date>2022-12-15T15:29:49Z</dc:date>
    <item>
      <title>Exporting multiple dwg with sheet number included</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622247#M59721</link>
      <description>&lt;P&gt;I think this should be something easy but i cant find a way to do it. I want a single idw per project and include all the drawings inside this idw. I rename each sheet so that I can orient myself. After drawings are finished I usually save a copy as dwg for autocad which I sent to be manufactured. BUT as I renamed all the sheets, when they are exported as individual dwg files, they are not in order anymore, they are orded alphabeticaly. Inventor keep track of sheet number, can it generate the sheet number in the name of dwg file?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="order of sheets in idw" style="width: 298px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1152892i5CF77E7DBD751DF2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Snímka obrazovky 2022-12-15 124652.png" alt="order of sheets in idw" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;order of sheets in idw&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here is an order of drawing in idw, but when I batch generate individual files this info is lost, I used to manually rename the files to start with sheet number, but this is very time consuming.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 11:51:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622247#M59721</guid>
      <dc:creator>Kramarcik</dc:creator>
      <dc:date>2022-12-15T11:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting multiple dwg with sheet number included</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622766#M59722</link>
      <description>&lt;P&gt;Here is a rule I found online that I use. You will need to adjust to your liking. But it will combine all sheets of my drawing into a single pdf file. You can choose how and when to run this rule.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dim doc = ThisDoc.Document&lt;BR /&gt;oPDFAddIn = ThisApplication.ApplicationAddIns.ItemById ("{0AC6FD96-2F4D-42CE-8BE0-8AEA580399E4}")&lt;BR /&gt;oDocument = ThisApplication.ActiveDocument&lt;BR /&gt;oContext = ThisApplication.TransientObjects.CreateTranslationContext&lt;BR /&gt;oContext.Type = IOMechanismEnum.kFileBrowseIOMechanism&lt;BR /&gt;oOptions = ThisApplication.TransientObjects.CreateNameValueMap&lt;BR /&gt;oDataMedium = ThisApplication.TransientObjects.CreateDataMedium&lt;/P&gt;&lt;P&gt;filePath = ThisDoc.Path&lt;BR /&gt;oDataMedium.FileName = filePath + "\" + iProperties.Value("Project", "Part Number")+" - REV " + iProperties.Value("Project", "Revision Number")+".pdf"&lt;BR /&gt;oOptions.Value("Sheet_Range") = Inventor.PrintRangeEnum.kPrintAllSheets&lt;BR /&gt;oOptions.Value("Remove_Line_Weights") = 1&lt;BR /&gt;'oOptions.Value("Vector_Resolution") = 4800&lt;BR /&gt;oPDFAddIn.SaveCopyAs(oDocument, oContext, oOptions, oDataMedium)&lt;/P&gt;&lt;P&gt;MessageBox.Show("PDF CREATED!", "PDF PRINT")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 15:10:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622766#M59722</guid>
      <dc:creator>blandb</dc:creator>
      <dc:date>2022-12-15T15:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting multiple dwg with sheet number included</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622775#M59723</link>
      <description>&lt;P&gt;does not work. Sorry I am very elementrary in ilogic, cannot troubleshoot yet&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 15:12:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622775#M59723</guid>
      <dc:creator>Kramarcik</dc:creator>
      <dc:date>2022-12-15T15:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting multiple dwg with sheet number included</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622785#M59724</link>
      <description>&lt;P&gt;Did you create a rule in the drawing? Can you post what the problem is?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 15:16:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622785#M59724</guid>
      <dc:creator>blandb</dc:creator>
      <dc:date>2022-12-15T15:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting multiple dwg with sheet number included</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622823#M59725</link>
      <description>&lt;P&gt;I ran it one more time, on different idw and it worked, but:&lt;/P&gt;&lt;P&gt;the rule creates a singly .pdf file named "part name" - Rev A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I want is to create individual .dwg files named like this:&lt;/P&gt;&lt;P&gt;"sheet number on idw" - "sheet name" or "part name".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess this can be achieved through ilogic only. Any help is appreciated &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 15:29:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622823#M59725</guid>
      <dc:creator>Kramarcik</dc:creator>
      <dc:date>2022-12-15T15:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting multiple dwg with sheet number included</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622837#M59726</link>
      <description>&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-ilogic-and-vb-net-forum/ilogic-sort-sheets-by-sheet-name-in-open-drawing/m-p/8940963#M100164" target="_blank" rel="noopener"&gt;Here&lt;/A&gt; is a ilogic rule to sort browser nodes(sheets) . The sorting is done by sorting the list. This will likely sort alphabetically but you will need to read your page number. You should be able to modify the rule to rename and sort. You can have the post moved to the customization forum where you can get some help working through that. I have seen a rule thst renames and sorts but it is eluding me this morning.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 15:37:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622837#M59726</guid>
      <dc:creator>A.Acheson</dc:creator>
      <dc:date>2022-12-15T15:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting multiple dwg with sheet number included</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622847#M59727</link>
      <description>&lt;P&gt;I am an ilogic beginner so tough luck for me, but at least i know it can be done &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 15:42:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622847#M59727</guid>
      <dc:creator>Kramarcik</dc:creator>
      <dc:date>2022-12-15T15:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting multiple dwg with sheet number included</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622884#M59728</link>
      <description>&lt;P&gt;My apologies, I missed the dwg part. I just did a file export to DWG, and here is what I got:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my IDW:&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="blandb_0-1671119329188.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1153013i740F4E70E1965503/image-size/medium?v=v2&amp;amp;px=400" role="button" title="blandb_0-1671119329188.png" alt="blandb_0-1671119329188.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then in windows explorer it spit out:&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="blandb_1-1671119358866.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1153014iBFE1C51C3D088722/image-size/medium?v=v2&amp;amp;px=400" role="button" title="blandb_1-1671119358866.png" alt="blandb_1-1671119358866.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It kept the original drawing name, because when prompted for a file name, whatever is typed in the box is what is placed in front of the new sheets as shown above. If I would of placed "-" I would of gotten:&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="blandb_2-1671119558232.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1153016i80D7936D9CBBD5EC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="blandb_2-1671119558232.png" alt="blandb_2-1671119558232.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But it is keeping the renamed sheets from the idw.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 15:53:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11622884#M59728</guid>
      <dc:creator>blandb</dc:creator>
      <dc:date>2022-12-15T15:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting multiple dwg with sheet number included</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11624235#M59729</link>
      <description>&lt;P&gt;It does keep the names, but look at the order in your folder&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Snímka obrazovky 2022-12-16 063026.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1153265i2506B0D203705574/image-size/large?v=v2&amp;amp;px=999" role="button" title="Snímka obrazovky 2022-12-16 063026.png" alt="Snímka obrazovky 2022-12-16 063026.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I want to add the sheet number to the dwg (preferably not manually) to keep the same order of drawings as is in the idw.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2022 05:32:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/exporting-multiple-dwg-with-sheet-number-included/m-p/11624235#M59729</guid>
      <dc:creator>Kramarcik</dc:creator>
      <dc:date>2022-12-16T05:32:09Z</dc:date>
    </item>
  </channel>
</rss>

