<?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: Applying filter conditions in excel through BluePrism in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48859#M4338</link>
    <description>&lt;P&gt;Hi&lt;BR /&gt;Inputs screenshot is provided below &amp;amp;&lt;BR /&gt;Copy pasted Below Code:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Dim sw, dw As Object&lt;BR /&gt;Dim ss, ds As Object&lt;BR /&gt;Dim excel, sheet, varUsedRange As Object&lt;BR /&gt;Dim FilteredCount as Long&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Try&lt;/P&gt;
&lt;P&gt;sw = GetWorkbook(Handle, Workbookname)&lt;BR /&gt;ss = GetWorksheet(Handle,Workbookname,Worksheetname)&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;sw.Activate()&lt;BR /&gt;ss.Activate()&lt;BR /&gt;excel = ss.Application&lt;BR /&gt;sheet = excel.ActiveSheet&lt;/P&gt;
&lt;P&gt;varUsedRange = sheet.UsedRange().address &amp;nbsp; 'you can give your own Range&lt;/P&gt;
&lt;P&gt;If sheet.AutoFilterMode Then&lt;BR /&gt;&amp;nbsp; &amp;nbsp; sheet.AutoFilterMode = False &amp;nbsp; &amp;nbsp;'Turn off filters if already applied&lt;BR /&gt;End If&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;sheet.range(varUsedRange).AutoFilter (Field:=1, Criteria:=1)&lt;BR /&gt;'For text, use within double quotes as Criteria1:="one"&lt;/P&gt;
&lt;P&gt;'For multiple conditions in the same column use along with AND or OR operator as per requirement&lt;BR /&gt;'sheet.range(varUsedRange).AutoFilter (Field:=1, Criteria1:=1, Operator:=xlOr, Criteria2:=2)&lt;BR /&gt;'If the Blue Prism Code stage doesn't recognise the Excel constants of xlAnd, xlOr then&lt;BR /&gt;'either get the constants from this link&amp;nbsp;&lt;BR /&gt;'https://msdn.microsoft.com/en-us/vba/excel-vba/articles/xlautofilteroperator-enumeration-excel&lt;BR /&gt;'OR you can write a quick macro code as shown in Post #2 here&lt;BR /&gt;'http://rpaforum.net/threads/blueprism-code-stage-to-paste-data-as-values-in-excel.1190/post-3686&lt;/P&gt;
&lt;P&gt;FilteredCount = sheet.AutoFilter.Range.Columns("A").SpecialCells(12).Cells.Count - 1 &amp;nbsp; &amp;nbsp;'12 implies for xlCellTypeVisible&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;If FilteredCount &amp;gt; 0 then&lt;/P&gt;
&lt;P&gt;'This means there were rows returned by the filter&lt;/P&gt;
&lt;P&gt;End if&lt;/P&gt;
&lt;P&gt;Success = True&lt;/P&gt;
&lt;P&gt;Catch e As Exception&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Success = False&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Message = e.Message&lt;BR /&gt;Finally&lt;BR /&gt;&amp;nbsp; &amp;nbsp; sw = Nothing&lt;BR /&gt;&amp;nbsp; &amp;nbsp; ss = Nothing&lt;BR /&gt;&amp;nbsp; &amp;nbsp; dw = Nothing&lt;BR /&gt;&amp;nbsp; &amp;nbsp; ds = Nothing&lt;BR /&gt;&amp;nbsp; &amp;nbsp; excel = Nothing&lt;BR /&gt;&amp;nbsp; &amp;nbsp; sheet = Nothing&lt;BR /&gt;&amp;nbsp; &amp;nbsp; varUsedRange = Nothing&lt;BR /&gt;End Try&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25686.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25816i9B5C6EAECC8370DC/image-size/large?v=v2&amp;amp;px=999" role="button" title="25686.png" alt="25686.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Srikanth K&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kummari Srikanth&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Thu, 13 Apr 2023 13:49:00 GMT</pubDate>
    <dc:creator>KummariSrikanth</dc:creator>
    <dc:date>2023-04-13T13:49:00Z</dc:date>
    <item>
      <title>Applying filter conditions in excel through BluePrism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48851#M4330</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;How to apply filter conditions in excel through blue prism &amp;amp; get that data into collection.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Srikanth K&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kummari Srikanth&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Apr 2023 12:57:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48851#M4330</guid>
      <dc:creator>KummariSrikanth</dc:creator>
      <dc:date>2023-04-11T12:57:00Z</dc:date>
    </item>
    <item>
      <title>RE: Applying filter conditions in excel through BluePrism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48852#M4331</link>
      <description>&lt;P&gt;Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="c2dc803c-69d4-4cc9-8a5c-01848995c0a6" data-tag-text="@Kummari Srikanth" href="https://community.blueprism.com/network/profile?UserKey=c2dc803c-69d4-4cc9-8a5c-01848995c0a6" data-itemmentionkey="ea002002-20a4-497f-8577-a6a51c302c02"&gt;@Kummari Srikanth&lt;/A&gt; - Refer this thread : &lt;A href="https://community.blueprism.com/discussion/excel-font-color?ReturnUrl=%2fcontent%2fallrecentposts" target="test_blank"&gt;https://community.blueprism.com/discussion/excel-font-color?ReturnUrl=%2fcontent%2fallrecentposts&lt;/A&gt; and just update this code with below code, pass the inputs and criteria you want to apply :&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25664.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25793iA140C1F9494366EC/image-size/large?v=v2&amp;amp;px=999" role="button" title="25664.png" alt="25664.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25665.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25794iDA977B249D789363/image-size/large?v=v2&amp;amp;px=999" role="button" title="25665.png" alt="25665.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;STRONG&gt;Code :&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;DIV&gt;&lt;SPAN&gt;Dim ws As Object&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;ws = GetWorksheet(Handle, Workbook, Worksheet)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;ws.Activate()&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;ws.Range("A1").AutoFilter(Field:= Field, Criteria1:= Criteria)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25666.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25798iCDE4E59E493139C5/image-size/large?v=v2&amp;amp;px=999" role="button" title="25666.png" alt="25666.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kindly up vote this as "Best Answer" if it adds value or resolves your query in anyway possible, happy to help.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Mukesh Kumar - Senior Automation Developer&lt;BR /&gt;&lt;BR /&gt;NHS, England, United Kingdom, GB&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Apr 2023 13:20:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48852#M4331</guid>
      <dc:creator>Mukeshh_k</dc:creator>
      <dc:date>2023-04-11T13:20:00Z</dc:date>
    </item>
    <item>
      <title>RE: Applying filter conditions in excel through BluePrism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48853#M4332</link>
      <description>&lt;P&gt;Hi Mukesh Kumar,&lt;BR /&gt;After filtering, I need that filtered data into a collection. There are no outputs in the above Code.Is this possible.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Srikanth K&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kummari Srikanth&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Apr 2023 05:47:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48853#M4332</guid>
      <dc:creator>KummariSrikanth</dc:creator>
      <dc:date>2023-04-12T05:47:00Z</dc:date>
    </item>
    <item>
      <title>RE: Applying filter conditions in excel through BluePrism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48854#M4333</link>
      <description>&lt;P&gt;Hi &lt;A href="https://community.blueprism.com/network/profile?UserKey=c2dc803c-69d4-4cc9-8a5c-01848995c0a6" target="_blank" rel="noopener"&gt;Kummari Srikanth&lt;/A&gt; you can simply call the action get worksheet as collection from either process - or just call the page get worksheet as collection inside the action after code stage created as above, it should do for you.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kindly up vote this as "Best Answer" if it adds value or resolves your query in anyway possible, happy to help.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Mukesh Kumar - Senior Automation Developer&lt;BR /&gt;&lt;BR /&gt;NHS, England, United Kingdom, GB&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 08:05:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48854#M4333</guid>
      <dc:creator>Mukeshh_k</dc:creator>
      <dc:date>2023-04-12T08:05:00Z</dc:date>
    </item>
    <item>
      <title>RE: Applying filter conditions in excel through BluePrism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48855#M4334</link>
      <description>&lt;P&gt;Hi Mukesh Kumar,&lt;BR /&gt;&lt;BR /&gt;I tried to get the filtered data into the collection by using Get worksheet as Collection Action. But it is not giving the filtered data into collection.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Srikanth K&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kummari Srikanth&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Apr 2023 06:43:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48855#M4334</guid>
      <dc:creator>KummariSrikanth</dc:creator>
      <dc:date>2023-04-13T06:43:00Z</dc:date>
    </item>
    <item>
      <title>RE: Applying filter conditions in excel through BluePrism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48856#M4335</link>
      <description>&lt;P&gt;Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="c2dc803c-69d4-4cc9-8a5c-01848995c0a6" data-tag-text="@Kummari Srikanth" href="https://community.blueprism.com/network/profile?UserKey=c2dc803c-69d4-4cc9-8a5c-01848995c0a6" data-itemmentionkey="f89051aa-7322-406c-ae02-e7178a4fc5ff"&gt;@Kummari Srikanth&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The best way to get the filtered data is after filtering do a get number of rows actions and then use get worksheet range. This should give you the filtered data.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&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>Thu, 13 Apr 2023 08:31:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48856#M4335</guid>
      <dc:creator>michaeloneil</dc:creator>
      <dc:date>2023-04-13T08:31:00Z</dc:date>
    </item>
    <item>
      <title>RE: Applying filter conditions in excel through BluePrism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48857#M4336</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;&lt;BR /&gt;Got this Error:Exception from HRESULT: 0x800A03EC. After Executing the excel filter Code.&lt;BR /&gt;&lt;BR /&gt;Regards&amp;nbsp;&lt;BR /&gt;Srikanth K&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kummari Srikanth&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Apr 2023 10:53:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48857#M4336</guid>
      <dc:creator>KummariSrikanth</dc:creator>
      <dc:date>2023-04-13T10:53:00Z</dc:date>
    </item>
    <item>
      <title>RE: Applying filter conditions in excel through BluePrism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48858#M4337</link>
      <description>&lt;P&gt;This sounds like an error in either one of the input parameters or with the excel file. Check the filter parameter you're entering exactly matches the value in the workbook i.e. make sure there are no spaces in the text. If you can share screenshots we might be able to help you further.&lt;/P&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>Thu, 13 Apr 2023 13:10:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48858#M4337</guid>
      <dc:creator>michaeloneil</dc:creator>
      <dc:date>2023-04-13T13:10:00Z</dc:date>
    </item>
    <item>
      <title>RE: Applying filter conditions in excel through BluePrism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48859#M4338</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;Inputs screenshot is provided below &amp;amp;&lt;BR /&gt;Copy pasted Below Code:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Dim sw, dw As Object&lt;BR /&gt;Dim ss, ds As Object&lt;BR /&gt;Dim excel, sheet, varUsedRange As Object&lt;BR /&gt;Dim FilteredCount as Long&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Try&lt;/P&gt;
&lt;P&gt;sw = GetWorkbook(Handle, Workbookname)&lt;BR /&gt;ss = GetWorksheet(Handle,Workbookname,Worksheetname)&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;sw.Activate()&lt;BR /&gt;ss.Activate()&lt;BR /&gt;excel = ss.Application&lt;BR /&gt;sheet = excel.ActiveSheet&lt;/P&gt;
&lt;P&gt;varUsedRange = sheet.UsedRange().address &amp;nbsp; 'you can give your own Range&lt;/P&gt;
&lt;P&gt;If sheet.AutoFilterMode Then&lt;BR /&gt;&amp;nbsp; &amp;nbsp; sheet.AutoFilterMode = False &amp;nbsp; &amp;nbsp;'Turn off filters if already applied&lt;BR /&gt;End If&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;sheet.range(varUsedRange).AutoFilter (Field:=1, Criteria:=1)&lt;BR /&gt;'For text, use within double quotes as Criteria1:="one"&lt;/P&gt;
&lt;P&gt;'For multiple conditions in the same column use along with AND or OR operator as per requirement&lt;BR /&gt;'sheet.range(varUsedRange).AutoFilter (Field:=1, Criteria1:=1, Operator:=xlOr, Criteria2:=2)&lt;BR /&gt;'If the Blue Prism Code stage doesn't recognise the Excel constants of xlAnd, xlOr then&lt;BR /&gt;'either get the constants from this link&amp;nbsp;&lt;BR /&gt;'https://msdn.microsoft.com/en-us/vba/excel-vba/articles/xlautofilteroperator-enumeration-excel&lt;BR /&gt;'OR you can write a quick macro code as shown in Post #2 here&lt;BR /&gt;'http://rpaforum.net/threads/blueprism-code-stage-to-paste-data-as-values-in-excel.1190/post-3686&lt;/P&gt;
&lt;P&gt;FilteredCount = sheet.AutoFilter.Range.Columns("A").SpecialCells(12).Cells.Count - 1 &amp;nbsp; &amp;nbsp;'12 implies for xlCellTypeVisible&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;If FilteredCount &amp;gt; 0 then&lt;/P&gt;
&lt;P&gt;'This means there were rows returned by the filter&lt;/P&gt;
&lt;P&gt;End if&lt;/P&gt;
&lt;P&gt;Success = True&lt;/P&gt;
&lt;P&gt;Catch e As Exception&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Success = False&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Message = e.Message&lt;BR /&gt;Finally&lt;BR /&gt;&amp;nbsp; &amp;nbsp; sw = Nothing&lt;BR /&gt;&amp;nbsp; &amp;nbsp; ss = Nothing&lt;BR /&gt;&amp;nbsp; &amp;nbsp; dw = Nothing&lt;BR /&gt;&amp;nbsp; &amp;nbsp; ds = Nothing&lt;BR /&gt;&amp;nbsp; &amp;nbsp; excel = Nothing&lt;BR /&gt;&amp;nbsp; &amp;nbsp; sheet = Nothing&lt;BR /&gt;&amp;nbsp; &amp;nbsp; varUsedRange = Nothing&lt;BR /&gt;End Try&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25686.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25816i9B5C6EAECC8370DC/image-size/large?v=v2&amp;amp;px=999" role="button" title="25686.png" alt="25686.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Srikanth K&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kummari Srikanth&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Apr 2023 13:49:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48859#M4338</guid>
      <dc:creator>KummariSrikanth</dc:creator>
      <dc:date>2023-04-13T13:49:00Z</dc:date>
    </item>
    <item>
      <title>RE: Applying filter conditions in excel through BluePrism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48860#M4339</link>
      <description>&lt;P&gt;Hi Kummari&lt;BR /&gt;&lt;BR /&gt;The code looks a little off to me and there are a lot of rows commented out was this intentional? also was this something you got from a website and copied to a code stage to try to use? and lastly is this to provide multiple criteria for the filter?&lt;/P&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>Thu, 13 Apr 2023 19:55:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48860#M4339</guid>
      <dc:creator>michaeloneil</dc:creator>
      <dc:date>2023-04-13T19:55:00Z</dc:date>
    </item>
    <item>
      <title>RE: Applying filter conditions in excel through BluePrism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48861#M4340</link>
      <description>&lt;P&gt;Hi Srikanth&lt;BR /&gt;&lt;BR /&gt;If you are looking for filter action , one action is already available in MS Excel VBO&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25696.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25830i08A0FD80F80FEA3A/image-size/large?v=v2&amp;amp;px=999" role="button" title="25696.png" alt="25696.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25697.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25829i6B9C877A96558A99/image-size/large?v=v2&amp;amp;px=999" role="button" title="25697.png" alt="25697.png" /&gt;&lt;/span&gt;&lt;BR /&gt;There two more actions to apply and remove auto filter&lt;BR /&gt;You can leverage these actions&lt;BR /&gt;&lt;BR /&gt;Regards&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Lakshmi Narayana&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Apr 2023 01:50:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48861#M4340</guid>
      <dc:creator>plnarayana777</dc:creator>
      <dc:date>2023-04-14T01:50:00Z</dc:date>
    </item>
    <item>
      <title>RE: Applying filter conditions in excel through BluePrism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48862#M4341</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;Yeah copy pasted this code from website. I am looking for multiple filtering criteria,but the above code is for single filter.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Srikanth K&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kummari Srikanth&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Apr 2023 13:00:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48862#M4341</guid>
      <dc:creator>KummariSrikanth</dc:creator>
      <dc:date>2023-04-14T13:00:00Z</dc:date>
    </item>
    <item>
      <title>RE: Applying filter conditions in excel through BluePrism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48863#M4342</link>
      <description>&lt;P&gt;Hi &lt;SPAN&gt;Lakshmi Narayana,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;I dont have the excel VBO for filters. I made a VBO with the above mentioned code but it is not working.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Srikanth K&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kummari Srikanth&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Apr 2023 05:17:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48863#M4342</guid>
      <dc:creator>KummariSrikanth</dc:creator>
      <dc:date>2023-04-17T05:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Applying filter conditions in excel through BluePrism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48864#M4343</link>
      <description>&lt;P&gt;Download the latest version from DX portal , it is available in it&lt;BR /&gt;&lt;BR /&gt;Regards&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Lakshmi Narayana&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Apr 2023 05:35:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Applying-filter-conditions-in-excel-through-BluePrism/m-p/48864#M4343</guid>
      <dc:creator>plnarayana777</dc:creator>
      <dc:date>2023-04-17T05:35:00Z</dc:date>
    </item>
  </channel>
</rss>

