<?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 BOM filter with view representation using ilogic in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-filter-with-view-representation-using-ilogic/m-p/9152100#M103168</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can any one help me how to filter the BOM based on view representation using ilogic.&lt;/P&gt;&lt;P&gt;I want to automate this feature with assembly parameter.&lt;/P&gt;&lt;P&gt;Can any one share the sample examples.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 18 Nov 2019 08:28:00 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-11-18T08:28:00Z</dc:date>
    <item>
      <title>BOM filter with view representation using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-filter-with-view-representation-using-ilogic/m-p/9152100#M103168</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can any one help me how to filter the BOM based on view representation using ilogic.&lt;/P&gt;&lt;P&gt;I want to automate this feature with assembly parameter.&lt;/P&gt;&lt;P&gt;Can any one share the sample examples.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2019 08:28:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-filter-with-view-representation-using-ilogic/m-p/9152100#M103168</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-18T08:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: BOM filter with view representation using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-filter-with-view-representation-using-ilogic/m-p/9181262#M103624</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4427777"&gt;@chandra.shekar.g&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have any answer for this?&lt;/P&gt;&lt;P&gt;is it possible to do it iLogic?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 05:43:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-filter-with-view-representation-using-ilogic/m-p/9181262#M103624</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-04T05:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: BOM filter with view representation using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-filter-with-view-representation-using-ilogic/m-p/9183752#M103680</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4253164"&gt;@Sergio.D.Suárez&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have any idea about this?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 05:18:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-filter-with-view-representation-using-ilogic/m-p/9183752#M103680</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-05T05:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: BOM filter with view representation using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-filter-with-view-representation-using-ilogic/m-p/9185277#M103716</link>
      <description>&lt;P&gt;I also have looked into this issue.&amp;nbsp; I don't see any access to the "Filter Settings" of the PartsList.&amp;nbsp; You can access the MemberSelection, PartsListStyle, and many other aspects of it, but not the one your looking for.&lt;/P&gt;&lt;P&gt;Try searching the Inventor Ideas forum.&amp;nbsp; If you don't find anything about it there, you can post the idea of including this access.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 17:32:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-filter-with-view-representation-using-ilogic/m-p/9185277#M103716</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2019-12-05T17:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: BOM filter with view representation using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-filter-with-view-representation-using-ilogic/m-p/9186044#M103725</link>
      <description>&lt;P&gt;i could not find a way to set the default filters but you could create your own filter. The following i logic code will filter all rows that have the letter "e" in the 3e cell. (that is ofcource not usefull but maby a start point for your own filter)&lt;/P&gt;&lt;PRE&gt;Dim doc As DrawingDocument = ThisApplication.ActiveDocument
Dim sheet As Sheet = doc.ActiveSheet
For Each row As PartsListRow In sheet.PartsLists.Item(1).PartsListRows
    Dim cell As PartsListCell = row.Item(3)
    If (cell.Value.Contains("e")) Then
        row.Visible = False
    Else
        row.Visible = True
    End If
Next&lt;/PRE&gt;</description>
      <pubDate>Thu, 05 Dec 2019 23:32:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-filter-with-view-representation-using-ilogic/m-p/9186044#M103725</guid>
      <dc:creator>JelteDeJong</dc:creator>
      <dc:date>2019-12-05T23:32:12Z</dc:date>
    </item>
  </channel>
</rss>

