<?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 Filter Pivot Field in Digital Exchange</title>
    <link>https://community.blueprism.com/t5/Digital-Exchange/Filter-Pivot-Field/m-p/113314#M3790</link>
    <description>&lt;P&gt;Hi All,&lt;BR /&gt;In one of the sheet we have a pivot table, for B3 cell we have a filter, need to select All and unselect "#N/A, (blanks), 0. Please find the below screenshot and do the needful in achieving this step.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Karthikchoppadandi_0-1724337399694.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39210i89582D1FFB8E06B5/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Karthikchoppadandi_0-1724337399694.png" alt="Karthikchoppadandi_0-1724337399694.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Aug 2024 14:44:15 GMT</pubDate>
    <dc:creator>Karthik.choppadandi</dc:creator>
    <dc:date>2024-08-22T14:44:15Z</dc:date>
    <item>
      <title>Filter Pivot Field</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Filter-Pivot-Field/m-p/113314#M3790</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;In one of the sheet we have a pivot table, for B3 cell we have a filter, need to select All and unselect "#N/A, (blanks), 0. Please find the below screenshot and do the needful in achieving this step.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Karthikchoppadandi_0-1724337399694.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39210i89582D1FFB8E06B5/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Karthikchoppadandi_0-1724337399694.png" alt="Karthikchoppadandi_0-1724337399694.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2024 14:44:15 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Filter-Pivot-Field/m-p/113314#M3790</guid>
      <dc:creator>Karthik.choppadandi</dc:creator>
      <dc:date>2024-08-22T14:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Pivot Field</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Filter-Pivot-Field/m-p/113316#M3791</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/59284"&gt;@Karthik.choppadandi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to use vba ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2024 20:00:23 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Filter-Pivot-Field/m-p/113316#M3791</guid>
      <dc:creator>Mohamad_Dakkouri</dc:creator>
      <dc:date>2024-08-22T20:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Pivot Field</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Filter-Pivot-Field/m-p/113319#M3792</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/59284"&gt;@Karthik.choppadandi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To add criteria to a pivot item you need to create a new action in your excel vbo. The code, inputs/outputs are shown below. The problem is you have to set one value at a time to be either visible or not visible so this would mean you need to set a loop through to set the #NA, Blanks and 0 each to visible = FALSE leaving everything else in your pivot table. Hope this helps &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="michaeloneil_1-1724360486977.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39212iA6067FC8A8F6697B/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="michaeloneil_1-1724360486977.png" alt="michaeloneil_1-1724360486977.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dim wb, ws As Object&lt;BR /&gt;'Dim SrcData As String&lt;BR /&gt;'Dim SrcSheet As String&lt;BR /&gt;'Dim SrcRange AS String&lt;/P&gt;&lt;P&gt;wb = GetWorkbook(Handle, Workbook)&lt;BR /&gt;ws = GetWorksheet(Handle, Workbook, Worksheet)&lt;/P&gt;&lt;P&gt;wb.Activate()&lt;BR /&gt;ws.Activate()&lt;/P&gt;&lt;P&gt;ws.PivotTables(Pivot_table_name).PivotFields(Pivot_field)'.CurrentPage = _&lt;BR /&gt;' "(All)"&lt;BR /&gt;With ws.PivotTables(Pivot_table_name).PivotFields(Pivot_field)&lt;BR /&gt;.PivotItems(Pivot_list_item).Visible = visible&lt;BR /&gt;End With&lt;BR /&gt;ws.PivotTables(Pivot_table_name).PivotFields(Pivot_field). _&lt;BR /&gt;EnableMultiplePageItems = True&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2024 21:03:40 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Filter-Pivot-Field/m-p/113319#M3792</guid>
      <dc:creator>michaeloneil</dc:creator>
      <dc:date>2024-08-22T21:03:40Z</dc:date>
    </item>
  </channel>
</rss>

