<?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: About Multiple filter in pivot table in University Forum</title>
    <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79831#M731</link>
    <description>&lt;SPAN&gt;Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="c522ddf7-1db7-4bda-bf2a-bec34fc561b5" data-tag-text="@Tejashri Nevase" href="https://community.blueprism.com/network/profile?UserKey=c522ddf7-1db7-4bda-bf2a-bec34fc561b5" data-itemmentionkey="18da0c01-1309-476a-a9f5-f1fc9b57440a"&gt;@Tejashri Nevase&lt;/A&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can achieve this functionality in the current&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;by extending either '&lt;STRONG&gt;MS Excel&lt;/STRONG&gt;' or '&lt;STRONG&gt;MS Excel - Extended&lt;/STRONG&gt;' VBO by creating a new action within the object.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;NOTE: I would recommend create a duplicate object of these objects and make your changes there so that you always have a backup with you in case anything goes wrong.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Solution Explanation:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, you need to create a new action in your already existing Excel VBO business object named&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;'Add Multiple Filters To Pivot Table Field' &lt;/STRONG&gt;&lt;SPAN&gt;and provide the following input parameters to your action:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Handle&lt;/STRONG&gt; : This is a number type data item which will hold the current session dictionary value.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Workbook&lt;/STRONG&gt; : This is a text type data item where you need to pass the workbook name that you might get from 'Create Workbook' or 'Open Workbook' action.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Worksheet&lt;/STRONG&gt;: This is a text type data item which indicates the name of the worksheet in your excel workbook file where the pivot table exists.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Column Number&lt;/STRONG&gt;: This is a number type data item which &lt;SPAN style="font-size: 14px;"&gt;indicates&lt;/SPAN&gt; the column number in your &lt;SPAN style="font-size: 14px;"&gt;original&lt;/SPAN&gt; dataset from where you have created the Pivot table. The column number begins from 1 to N.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Pivot Table Name&lt;/STRONG&gt; : This is a text type data item which indicates the name of the Pivot Table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Criteria&lt;/STRONG&gt; : This is a collection type data item which consists of a single column called as &lt;STRONG&gt;'Criteria Name' &lt;/STRONG&gt;of text data type and this column will consists of all the filter values that you need to have in your page filter in each individual row.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32148.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32259i225F00830F42AA6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="32148.png" alt="32148.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, you can add a code stage named&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;'Add Multiple Filters To Pivot Table Field'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;and add the following inputs parameter and map the data items to it:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32149.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32258i3ED9AF1AE969113B/image-size/large?v=v2&amp;amp;px=999" role="button" title="32149.png" alt="32149.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Code:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32150.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32264i20767E6FD6232C99/image-size/large?v=v2&amp;amp;px=999" role="button" title="32150.png" alt="32150.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-vbnet" tabindex="0"&gt;&lt;CODE&gt;Dim ws As Object
Dim lstAppliedFilters As List(Of String)

lstAppliedFilters = New List(Of String)()

ws = GetWorksheet(Handle, Workbook, Worksheet)

ws.Activate()

ws.PivotTables(Pivot_Table_Name).PivotFields(Column_Number).EnableMultiplePageItems = True

For Each criteriaItem In Criteria.Rows
	

	For Each pivotFieldItem In ws.PivotTables(Pivot_Table_Name).PivotFields(Column_Number).PivotItems

		If (Not criteriaItem(0).ToString.Equals(pivotFieldItem.Name)) Then 

			If (Not lstAppliedFilters.Contains(pivotFieldItem.Name)) Then

				pivotFieldItem.Visible = False

			End If

		Else
		
			If criteriaItem(0).ToString.Equals(pivotFieldItem.Name) Then

				pivotFieldItem.Visible = True
				lstAppliedFilters.Add(criteriaItem(0).ToString)

			End If

		End If

	Next

Next&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You should have your workflow ready as shown below:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32151.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32260iD0494A35714817EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="32151.png" alt="32151.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Testing For Solution:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, publish your action and then use all the actions of the same business object where you have done the changes in your process studio while interacting with the excel file in order to avoid any exceptions. I have a sample process studio workflow shown below:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32152.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32262i6BEB33723542682D/image-size/large?v=v2&amp;amp;px=999" role="button" title="32152.png" alt="32152.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So just to explain you a sample scenario which I have picked up, I basically have an excel file with below original table data:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32153.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32261i7155E376BFE70BC7/image-size/large?v=v2&amp;amp;px=999" role="button" title="32153.png" alt="32153.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;I have also created a pivot table with the name, '&lt;STRONG&gt;PivotTable1&lt;/STRONG&gt;' before hand from start in a separate sheet called as '&lt;STRONG&gt;Pivot&lt;/STRONG&gt;' as shown below:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32154.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32263i27D3F028DF921654/image-size/large?v=v2&amp;amp;px=999" role="button" title="32154.png" alt="32154.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So what I want here is to add multiple filter values for the employee ID field (which is the column number: &lt;STRONG&gt;'1'&lt;/STRONG&gt; in my original dataset) which would be &lt;STRONG&gt;2,8 and 9&lt;/STRONG&gt; respectively. Hence, I am creating an excel instance, then opening my excel file, then making it visible on the screen and then I use my new created action which has the below parameters:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32155.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32267iFE480F87BA65B437/image-size/large?v=v2&amp;amp;px=999" role="button" title="32155.png" alt="32155.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;Post execution of the workflow I get the below results:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32156.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32265i491E1F7C22B8DD56/image-size/large?v=v2&amp;amp;px=999" role="button" title="32156.png" alt="32156.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;SPAN&gt;So here as you can see you can provide as many values as you want in different rows of your criteria collection with appropriate column number and &lt;SPAN style="font-size: 14px;"&gt;pivot&lt;/SPAN&gt; table name to have multiple filter &lt;SPAN style="font-size: 14px;"&gt;criteria&lt;/SPAN&gt;&amp;nbsp;selected.&lt;/SPAN&gt; ​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Mon, 20 Jun 2022 20:55:00 GMT</pubDate>
    <dc:creator>devneetmohanty07</dc:creator>
    <dc:date>2022-06-20T20:55:00Z</dc:date>
    <item>
      <title>About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79826#M726</link>
      <description>Hii All,&lt;BR /&gt;&lt;BR /&gt;I have to add multiple criteria to page field filter filters in the pivot table for that i am using Excel Extended VBO.&lt;BR /&gt;When i used multiple action it replace first criteria and add the new filter for pivot.&lt;BR /&gt;So how we can add multiple criteria to pivot filter field?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32400.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32512i285C98258A2747AD/image-size/large?v=v2&amp;amp;px=999" role="button" title="32400.png" alt="32400.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Tejashri Nevase&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Jun 2022 08:06:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79826#M726</guid>
      <dc:creator>TejashriNevase</dc:creator>
      <dc:date>2022-06-17T08:06:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79827#M727</link>
      <description>Hi Tejashiri&lt;BR /&gt;&lt;BR /&gt;I think the code you are using might look a bit like this ws.PivotTables(Pivot_table_name).PivotFields(Pivot_field).clearall if you remove the last part .clearall it should work for you.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Michael ONeil&lt;BR /&gt;Technical Lead developer&lt;BR /&gt;NTTData&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Jun 2022 17:57:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79827#M727</guid>
      <dc:creator>michaeloneil</dc:creator>
      <dc:date>2022-06-17T17:57:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79828#M728</link>
      <description>Hii &lt;A id="MainCopy_ctl13_ucMessageList_rptMessageList_ProfileImageDisplay_1_NameLink_1" biobubblekey="ddd4d6a3-af39-4c64-8db4-cdb1d05ed669" href="https://community.blueprism.com/network/profile?UserKey=ddd4d6a3-af39-4c64-8db4-cdb1d05ed669" target="_blank" rel="noopener"&gt;Michael&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Actually i am using excel extended VBO not any code stage. So could you explain more.&lt;BR /&gt;I want to add multiple filters. &lt;BR /&gt;I am sharing a image in that I am adding 0 and 11 as filter so how can add this multiple items to filter throught blue prism using excel extended VBO.
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32138.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32252i9D81940C22DB2FD7/image-size/large?v=v2&amp;amp;px=999" role="button" title="32138.png" alt="32138.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Tejashri Nevase&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Jun 2022 05:49:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79828#M728</guid>
      <dc:creator>TejashriNevase</dc:creator>
      <dc:date>2022-06-20T05:49:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79829#M729</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;When I say code stage I mean within the vbo you are using. If you open the excel extended vbo and go to the action you are using to set the filter you will see the code stage for this. I think the issue is in here in that each time you run the filter action it first clears all filters and then applies the new one. To apply multiple filters I think you would need to update this stage so its not clearing filters. You could make a duplicate of the action so you aren't impacting anyone else using it and then apply the change to the new action.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32140.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32249i96DBD676C652DD5D/image-size/large?v=v2&amp;amp;px=999" role="button" title="32140.png" alt="32140.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Michael ONeil&lt;BR /&gt;Technical Lead developer&lt;BR /&gt;NTTData&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Jun 2022 08:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79829#M729</guid>
      <dc:creator>michaeloneil</dc:creator>
      <dc:date>2022-06-20T08:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79830#M730</link>
      <description>Hii Miechal,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Actually i already apply the filter for pivot table but i want to select the multiple item in that filter .i am shared the screenshot above. I want to just add multiple item to that filter so how can i add that multiple item?&amp;nbsp;&lt;BR /&gt;When i am using the add criteria to page filed it add one criteria means it will select the one item .when I again add same action with different criteria it ovrride the first but i want to add multiple item so there is other way to add multiple item?&lt;BR /&gt;&lt;BR /&gt;please help...&lt;BR /&gt;&lt;BR /&gt;Thank you soo much.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Tejashri Nevase&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Jun 2022 18:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79830#M730</guid>
      <dc:creator>TejashriNevase</dc:creator>
      <dc:date>2022-06-20T18:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79831#M731</link>
      <description>&lt;SPAN&gt;Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="c522ddf7-1db7-4bda-bf2a-bec34fc561b5" data-tag-text="@Tejashri Nevase" href="https://community.blueprism.com/network/profile?UserKey=c522ddf7-1db7-4bda-bf2a-bec34fc561b5" data-itemmentionkey="18da0c01-1309-476a-a9f5-f1fc9b57440a"&gt;@Tejashri Nevase&lt;/A&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can achieve this functionality in the current&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;by extending either '&lt;STRONG&gt;MS Excel&lt;/STRONG&gt;' or '&lt;STRONG&gt;MS Excel - Extended&lt;/STRONG&gt;' VBO by creating a new action within the object.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;NOTE: I would recommend create a duplicate object of these objects and make your changes there so that you always have a backup with you in case anything goes wrong.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Solution Explanation:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, you need to create a new action in your already existing Excel VBO business object named&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;'Add Multiple Filters To Pivot Table Field' &lt;/STRONG&gt;&lt;SPAN&gt;and provide the following input parameters to your action:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Handle&lt;/STRONG&gt; : This is a number type data item which will hold the current session dictionary value.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Workbook&lt;/STRONG&gt; : This is a text type data item where you need to pass the workbook name that you might get from 'Create Workbook' or 'Open Workbook' action.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Worksheet&lt;/STRONG&gt;: This is a text type data item which indicates the name of the worksheet in your excel workbook file where the pivot table exists.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Column Number&lt;/STRONG&gt;: This is a number type data item which &lt;SPAN style="font-size: 14px;"&gt;indicates&lt;/SPAN&gt; the column number in your &lt;SPAN style="font-size: 14px;"&gt;original&lt;/SPAN&gt; dataset from where you have created the Pivot table. The column number begins from 1 to N.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Pivot Table Name&lt;/STRONG&gt; : This is a text type data item which indicates the name of the Pivot Table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Criteria&lt;/STRONG&gt; : This is a collection type data item which consists of a single column called as &lt;STRONG&gt;'Criteria Name' &lt;/STRONG&gt;of text data type and this column will consists of all the filter values that you need to have in your page filter in each individual row.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32148.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32259i225F00830F42AA6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="32148.png" alt="32148.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, you can add a code stage named&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;'Add Multiple Filters To Pivot Table Field'&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;and add the following inputs parameter and map the data items to it:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32149.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32258i3ED9AF1AE969113B/image-size/large?v=v2&amp;amp;px=999" role="button" title="32149.png" alt="32149.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Code:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32150.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32264i20767E6FD6232C99/image-size/large?v=v2&amp;amp;px=999" role="button" title="32150.png" alt="32150.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-vbnet" tabindex="0"&gt;&lt;CODE&gt;Dim ws As Object
Dim lstAppliedFilters As List(Of String)

lstAppliedFilters = New List(Of String)()

ws = GetWorksheet(Handle, Workbook, Worksheet)

ws.Activate()

ws.PivotTables(Pivot_Table_Name).PivotFields(Column_Number).EnableMultiplePageItems = True

For Each criteriaItem In Criteria.Rows
	

	For Each pivotFieldItem In ws.PivotTables(Pivot_Table_Name).PivotFields(Column_Number).PivotItems

		If (Not criteriaItem(0).ToString.Equals(pivotFieldItem.Name)) Then 

			If (Not lstAppliedFilters.Contains(pivotFieldItem.Name)) Then

				pivotFieldItem.Visible = False

			End If

		Else
		
			If criteriaItem(0).ToString.Equals(pivotFieldItem.Name) Then

				pivotFieldItem.Visible = True
				lstAppliedFilters.Add(criteriaItem(0).ToString)

			End If

		End If

	Next

Next&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You should have your workflow ready as shown below:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32151.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32260iD0494A35714817EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="32151.png" alt="32151.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Testing For Solution:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, publish your action and then use all the actions of the same business object where you have done the changes in your process studio while interacting with the excel file in order to avoid any exceptions. I have a sample process studio workflow shown below:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32152.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32262i6BEB33723542682D/image-size/large?v=v2&amp;amp;px=999" role="button" title="32152.png" alt="32152.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So just to explain you a sample scenario which I have picked up, I basically have an excel file with below original table data:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32153.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32261i7155E376BFE70BC7/image-size/large?v=v2&amp;amp;px=999" role="button" title="32153.png" alt="32153.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;I have also created a pivot table with the name, '&lt;STRONG&gt;PivotTable1&lt;/STRONG&gt;' before hand from start in a separate sheet called as '&lt;STRONG&gt;Pivot&lt;/STRONG&gt;' as shown below:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32154.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32263i27D3F028DF921654/image-size/large?v=v2&amp;amp;px=999" role="button" title="32154.png" alt="32154.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So what I want here is to add multiple filter values for the employee ID field (which is the column number: &lt;STRONG&gt;'1'&lt;/STRONG&gt; in my original dataset) which would be &lt;STRONG&gt;2,8 and 9&lt;/STRONG&gt; respectively. Hence, I am creating an excel instance, then opening my excel file, then making it visible on the screen and then I use my new created action which has the below parameters:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32155.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32267iFE480F87BA65B437/image-size/large?v=v2&amp;amp;px=999" role="button" title="32155.png" alt="32155.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;Post execution of the workflow I get the below results:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32156.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32265i491E1F7C22B8DD56/image-size/large?v=v2&amp;amp;px=999" role="button" title="32156.png" alt="32156.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;SPAN&gt;So here as you can see you can provide as many values as you want in different rows of your criteria collection with appropriate column number and &lt;SPAN style="font-size: 14px;"&gt;pivot&lt;/SPAN&gt; table name to have multiple filter &lt;SPAN style="font-size: 14px;"&gt;criteria&lt;/SPAN&gt;&amp;nbsp;selected.&lt;/SPAN&gt; ​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Jun 2022 20:55:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79831#M731</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-06-20T20:55:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79832#M732</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1843"&gt;@devneetmohanty07&lt;/a&gt; &lt;BR /&gt;Thanks you for your solution But i have doubt in your proces why you are used multicalc stage there in your process as set parameter. can you just just share the screenshot of your multicalc stage.&lt;BR /&gt;&lt;BR /&gt;and your response really help me in my project. Thank you very much!​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Tejashri Nevase&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jun 2022 01:39:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79832#M732</guid>
      <dc:creator>TejashriNevase</dc:creator>
      <dc:date>2022-06-21T01:39:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79833#M733</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="c522ddf7-1db7-4bda-bf2a-bec34fc561b5" data-tag-text="@Tejashri Nevase" href="https://community.blueprism.com/network/profile?UserKey=c522ddf7-1db7-4bda-bf2a-bec34fc561b5" data-itemmentionkey="af99fab3-df47-4d91-96ab-dfaa78a20937"&gt;@Tejashri Nevase&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I have used multi calculation stage in order to set up my file path and sheet name which I am going to use in my actions going forward. This you can also maintain in an environment variable or a configuration file as well or simply hardcode the values.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32178.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32288i73BB37A99320F5FC/image-size/large?v=v2&amp;amp;px=999" role="button" title="32178.png" alt="32178.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;​As you can see the file path of my excel file and the sheet name that I have set are then just simply being passed over to the below actions in form of a data item:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32179.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32295i1DA209F46542AACB/image-size/large?v=v2&amp;amp;px=999" role="button" title="32179.png" alt="32179.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jun 2022 03:27:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79833#M733</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-06-21T03:27:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79834#M734</link>
      <description>Hii &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1843"&gt;@devneetmohanty07&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;I am tried your solution but i got the below error. what is reason for that
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32196.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32310iFC8D30F58501B576/image-size/large?v=v2&amp;amp;px=999" role="button" title="32196.png" alt="32196.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Tejashri Nevase&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jun 2022 03:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79834#M734</guid>
      <dc:creator>TejashriNevase</dc:creator>
      <dc:date>2022-06-21T03:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79835#M735</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="c522ddf7-1db7-4bda-bf2a-bec34fc561b5" data-tag-text="@Tejashri Nevase" href="https://community.blueprism.com/network/profile?UserKey=c522ddf7-1db7-4bda-bf2a-bec34fc561b5" data-itemmentionkey="5538164b-4eb8-466a-aac2-4d40d9f82996"&gt;@Tejashri Nevase&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Can you show me the code stage once, which you are using?​ This issue will generally appears in the highlighted lines:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32213.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32330i1E264AEFD968EB81/image-size/large?v=v2&amp;amp;px=999" role="button" title="32213.png" alt="32213.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;One reason can be if you are not passing the right filter value in that criteria collection. By that I mean if a value does not exists in your excel worksheet then you will get this error and the other reason can be with the code that you are using.&lt;BR /&gt;&lt;BR /&gt;Also. check the column number here. If that has been provided correctly or not?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jun 2022 03:33:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79835#M735</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-06-21T03:33:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79836#M736</link>
      <description>hii &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1843"&gt;@devneetmohanty07&lt;/a&gt;&lt;BR /&gt;This is code stage i am using. I used the same as you show.&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32231.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32342i540C71E40346290B/image-size/large?v=v2&amp;amp;px=999" role="button" title="32231.png" alt="32231.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Tejashri Nevase&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jun 2022 03:55:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79836#M736</guid>
      <dc:creator>TejashriNevase</dc:creator>
      <dc:date>2022-06-21T03:55:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79837#M737</link>
      <description>Can you once show us the original table data that you are using and indicate which column do you need to apply filter on and what column number you are passing in the action as well?&lt;BR /&gt;&lt;BR /&gt;Also, I would like to see the other parameter values as well such as criteria collection and sheet name.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jun 2022 04:04:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79837#M737</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-06-21T04:04:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79838#M738</link>
      <description>Hii &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1843"&gt;@devneetmohanty07&lt;/a&gt;&lt;BR /&gt;I just change the input name as Column_Name And Pivot_Table_Name as Column Name and Pivot Table Name in your input. All I just follow all your instruction&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32274.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32385iD422DA2B033832A7/image-size/large?v=v2&amp;amp;px=999" role="button" title="32274.png" alt="32274.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;​And also copy your code as same.&lt;BR /&gt;I will share criteria collection . as I add field as 'Criteria Name' and add Two criteria.
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32275.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32387iF9F699F911672A59/image-size/large?v=v2&amp;amp;px=999" role="button" title="32275.png" alt="32275.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Tejashri Nevase&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jun 2022 04:06:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79838#M738</guid>
      <dc:creator>TejashriNevase</dc:creator>
      <dc:date>2022-06-21T04:06:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79839#M739</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="c522ddf7-1db7-4bda-bf2a-bec34fc561b5" data-tag-text="@Tejashri Nevase" href="https://community.blueprism.com/network/profile?UserKey=c522ddf7-1db7-4bda-bf2a-bec34fc561b5" data-itemmentionkey="1005193b-becd-4c2f-ae5d-258c20cfa1e7"&gt;@Tejashri Nevase&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Can you please show us the excel file with the original dataset not your pivoted data and also the column number value that you are passing as well with the information that you have shared so far?​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jun 2022 04:11:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79839#M739</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-06-21T04:11:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79840#M740</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1843"&gt;@devneetmohanty07&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;I will work fine with the number criteria.but it throw the error when i pass the character in the criteria collection.&lt;BR /&gt;This is working fine.&lt;BR /&gt;​&lt;span class="lia-inline-image-display-wrapper" image-alt="32308.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32418iD2BDDF59C49132A2/image-size/large?v=v2&amp;amp;px=999" role="button" title="32308.png" alt="32308.png" /&gt;&lt;/span&gt;&lt;BR /&gt;But when i pass the above criteria collection i got the same error as above.&lt;BR /&gt;&lt;BR /&gt;Why this is happening.? Is there need to change the code for Character?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Tejashri Nevase&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jun 2022 05:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79840#M740</guid>
      <dc:creator>TejashriNevase</dc:creator>
      <dc:date>2022-06-21T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79841#M741</link>
      <description>&lt;P&gt;Hi Tejashri,&lt;BR /&gt;&lt;BR /&gt;I have checked with the characters as well and it works. You are passing the wrong column number most likely and hence this issue is coming up. Check the below results for your reference:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32333.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32449iEB7601ABAD5A125B/image-size/large?v=v2&amp;amp;px=999" role="button" title="32333.png" alt="32333.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32334.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32443iF46E9004BC309AA2/image-size/large?v=v2&amp;amp;px=999" role="button" title="32334.png" alt="32334.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;As you can see in my pivot I made a small change where I am taking the Employee Name as a filter this time and passing the appropriate criteria for the same as well. But since I am taking employee name as a filter, my column position will change from 1 to 2 since it is the second column in my original worksheet:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="32335.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/32451i0A5702D5ACA3BEA7/image-size/large?v=v2&amp;amp;px=999" role="button" title="32335.png" alt="32335.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;As you see here, my criteria values should consist of the values among the available values for that column in my original dataset for which I wish to put on the filter along with the column position also where it lies exactly. Since, I want to filter on Employee Name and that is the second column in my original dataset. I will provide the column position as 2 and values also will be among the values that are present in that column only.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Like I was saying before, you can show us the original data and the column number that you are passing for me to troubleshoot it for you.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;WonderBotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jun 2022 06:10:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79841#M741</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-06-21T06:10:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79842#M742</link>
      <description>Thank You soo much &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1843"&gt;@devneetmohanty07&lt;/a&gt;, You solved my problem Actually i am passing the column number as in the pivot table. but we have to pass column number from original data.&lt;BR /&gt;&lt;BR /&gt;Solved .&lt;BR /&gt;Thanks a lot.​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Tejashri Nevase&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jun 2022 06:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79842#M742</guid>
      <dc:creator>TejashriNevase</dc:creator>
      <dc:date>2022-06-21T06:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: About Multiple filter in pivot table</title>
      <link>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79843#M743</link>
      <description>Glad it got solved for you Tejashri ! Do let us know in case of any issues or doubts you have in future. We are always happy to help you out. &lt;BR /&gt;&lt;BR /&gt;Hope to see you more in the community and have a great day ahead &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jun 2022 06:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/About-Multiple-filter-in-pivot-table/m-p/79843#M743</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-06-21T06:29:00Z</dc:date>
    </item>
  </channel>
</rss>

