<?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: Excel Font Color in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45153#M1451</link>
    <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/28828"&gt;@aanchalm&lt;/a&gt; - Understood thanks for clarifying your query : Please follow below approach:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;1) Add a custom action in one of your excel extended VBOs - Add Criteria to Filter by Font Colour - See below and &lt;STRONG&gt;Add inputs as : Handle, Worksheet Name, WorkBook Name, and Field&lt;/STRONG&gt;.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25297.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25429i751FBF81604F204E/image-size/large?v=v2&amp;amp;px=999" role="button" title="25297.png" alt="25297.png" /&gt;&lt;/span&gt;&lt;BR /&gt;2) Add a Code Stage : Set Inputs as below&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25298.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25431iA0239C7077BF3F18/image-size/large?v=v2&amp;amp;px=999" role="button" title="25298.png" alt="25298.png" /&gt;&lt;/span&gt;&lt;BR /&gt;3) Write below Code : Note for Criteria its hardcoded to (255, 0, 0) as per your requirement (in Red) - you can remove that colour code and set a user input for custom RGB value if your wish to choose different colour to filter.&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;&lt;STRONG&gt;Dim ws As Object&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;ws = GetWorksheet(Handle, Workbook, Worksheet)&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;ws.Activate()&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;ws.Range("A:Z").AutoFilter(Field:= Field, &lt;SPAN style="color: rgb(224, 62, 45);"&gt;Criteria1:= RGB(255, 0, 0&lt;/SPAN&gt;), Operator:= xlFilterFontColor)&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25299.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25432i1E85E94B62CD7089/image-size/large?v=v2&amp;amp;px=999" role="button" title="25299.png" alt="25299.png" /&gt;&lt;/span&gt;&lt;BR /&gt;4) Add Dll and Namespace: I will attach the dll with this response (&lt;A data-url="https://www.dllme.com/dll/files/microsoft_office_interop_excel" class="embedly-content" href="https://www.dllme.com/dll/files/microsoft_office_interop_excel" target="_blank" rel="noopener"&gt;Microsoft.Office.Interop.Excel.dll : Free .DLL download&lt;/A&gt;)- add this dll to C:\Program Files\Blue Prism Limited\Blue Prism Automate\ :&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Dll: Microsoft.Office.Interop.Excel.dll&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; NameSpace : Microsoft.Office.Interop.Excel.XLAutoFilterOperator&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Additionally you would have to specifiy the DataTable as this belongs to both of these Dll : &lt;STRONG&gt;'&lt;EM&gt;DataTable&lt;/EM&gt;' is an&amp;nbsp;&lt;EM&gt;ambiguous&lt;/EM&gt;&amp;nbsp;reference between '&lt;EM&gt;System&lt;/EM&gt;.&lt;EM&gt;Data&lt;/EM&gt;.&lt;EM&gt;DataTable&lt;/EM&gt;' and '&lt;EM&gt;Microsoft&lt;/EM&gt;.&lt;EM&gt;Office&lt;/EM&gt;.&lt;/STRONG&gt;&lt;EM&gt;&lt;STRONG&gt;Interop.Excel&lt;/STRONG&gt; &lt;/EM&gt;to let the code know which data table you are using - add reference namespace as : System.Data.DataTable so that system does not get confused which reference to use as you might have other actions which are referenced to this DataTable reference from System.Data&lt;BR /&gt;&lt;BR /&gt;See below: &lt;span class="lia-inline-image-display-wrapper" image-alt="25300.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25433i77C7D81AA2AD9970/image-size/large?v=v2&amp;amp;px=999" role="button" title="25300.png" alt="25300.png" /&gt;&lt;/span&gt;&lt;BR /&gt;5) Publish the Action and Call from Process :&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25301.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25437i62E9A915395B5E76/image-size/large?v=v2&amp;amp;px=999" role="button" title="25301.png" alt="25301.png" /&gt;&lt;/span&gt;&lt;BR /&gt;7) Result/Ouput:&lt;BR /&gt;Excel before Code:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25302.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25436iA27B4B3149C6268E/image-size/large?v=v2&amp;amp;px=999" role="button" title="25302.png" alt="25302.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Excel After Code:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25303.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25434iD831EAD8E79A60A5/image-size/large?v=v2&amp;amp;px=999" role="button" title="25303.png" alt="25303.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Let me know if you face any difficulties implementing this.&lt;BR /&gt;&lt;BR /&gt;&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>Sat, 08 Apr 2023 12:21:00 GMT</pubDate>
    <dc:creator>Mukeshh_k</dc:creator>
    <dc:date>2023-04-08T12:21:00Z</dc:date>
    <item>
      <title>Excel Font Color</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45147#M1445</link>
      <description>&lt;P&gt;Hi team,&lt;BR /&gt;&lt;BR /&gt;I have an excel in which a column has red colored text in it/font color is red, I have to filter that column on that basis ,Can anyone tell me how to do that?&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;aanchal mathur&lt;BR /&gt;System engineer&lt;BR /&gt;Infosys ltd&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Apr 2023 14:17:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45147#M1445</guid>
      <dc:creator>aanchalm</dc:creator>
      <dc:date>2023-04-07T14:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Font Color</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45148#M1446</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/28828"&gt;@aanchalm&lt;/a&gt; : Is one of the columns name in red font colour or the rows data in the column have red font ? Do you have a sample snip of how it looks like, it will be easy to understand it then?&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;</description>
      <pubDate>Fri, 07 Apr 2023 16:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45148#M1446</guid>
      <dc:creator>Mukeshh_k</dc:creator>
      <dc:date>2023-04-07T16:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Font Color</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45149#M1447</link>
      <description>&lt;P&gt;It is a column in which the numbers are entered like 254.78 , these numbers are written in red color, I don't have the snip as much.&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;aanchal &lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Apr 2023 17:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45149#M1447</guid>
      <dc:creator>aanchalm</dc:creator>
      <dc:date>2023-04-07T17:14:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Font Color</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45150#M1448</link>
      <description>&lt;P&gt;Hi &lt;A href="https://community.blueprism.com/network/profile?UserKey=5ac573e2-c74f-4510-bf20-44fe9b791b29" target="_blank" rel="noopener"&gt;aanchal mathur&lt;/A&gt; - (Your Query : &lt;SPAN&gt;column has red &lt;SPAN style="font-size: 14.6667px;"&gt;coloured&lt;/SPAN&gt;&amp;nbsp;text in it/font &lt;SPAN style="font-size: 14.6667px;"&gt;colour&lt;/SPAN&gt; is red, I have to filter that column on that basis)- is it the rows in that specific column which are red in colour and you want to filter those rows which has red font- See below is it like this snip?&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;Snip&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25291.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25424iADEDBDD4DDD7FC60/image-size/large?v=v2&amp;amp;px=999" role="button" title="25291.png" alt="25291.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;To try creating a code for above such cases : just hit record the macro and do the excel operations when done stop the macro and try understanding the code:&lt;BR /&gt;for your scenario - &lt;span class="lia-inline-image-display-wrapper" image-alt="25292.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25427iBA0B941D8634C650/image-size/large?v=v2&amp;amp;px=999" role="button" title="25292.png" alt="25292.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Macro VBA Code:&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25293.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25425i0874D76372A5BC62/image-size/large?v=v2&amp;amp;px=999" role="button" title="25293.png" alt="25293.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;You can replicate this code in one of your excel extended objects, additionally you might have to add the &lt;STRONG&gt;Dll : Microsoft.Office.Interop.Excel.dll &lt;/STRONG&gt;and Namespace&lt;STRONG&gt; : Microsoft.Office.Interop.Excel.XLAutoFilterOperator&lt;/STRONG&gt;&lt;BR /&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>Fri, 07 Apr 2023 17:30:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45150#M1448</guid>
      <dc:creator>Mukeshh_k</dc:creator>
      <dc:date>2023-04-07T17:30:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Font Color</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45151#M1449</link>
      <description>&lt;P&gt;Hi Aanchal,&lt;BR /&gt;&lt;BR /&gt;You will need a new action in the Excel VBO for this..&lt;BR /&gt;The below code is in C# but you can easily convert into VB.net:&lt;/P&gt;
&lt;PRE class="default s-code-block"&gt;&lt;CODE class="hljs language-scss"&gt;xs1&lt;SPAN class="hljs-selector-class"&gt;.Range&lt;/SPAN&gt;&lt;SPAN class="hljs-selector-attr"&gt;[&lt;SPAN class="hljs-string"&gt;"A1"&lt;/SPAN&gt;, xs1.Cells[lastrow.Row, lastcol.Column]&lt;/SPAN&gt;].
&lt;SPAN class="hljs-built_in"&gt;AutoFilter&lt;/SPAN&gt;(&lt;SPAN class="hljs-number"&gt;14&lt;/SPAN&gt;, xlBook.Colors[&lt;SPAN class="hljs-number"&gt;33&lt;/SPAN&gt;], Excel.XlAutoFilterOperator.xlFilterCellColor);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Bear in mind that in this example the colour id is hardcoded as 33.&lt;BR /&gt;You will need to find the appropriate color id for your filter:&lt;BR /&gt;&lt;EM&gt;&lt;A href="https://www.automateexcel.com/excel-formatting/color-reference-for-color-index/" target="test_blank"&gt;https://www.automateexcel.com/excel-formatting/color-reference-for-color-index/&lt;/A&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Andrzej Silarow&lt;BR /&gt;Principal Consultant&lt;BR /&gt;RPA Guru&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2023 22:04:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45151#M1449</guid>
      <dc:creator>asilarow</dc:creator>
      <dc:date>2023-04-07T22:04:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Font Color</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45152#M1450</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;It is like snip 2.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;aanchal mathur&lt;BR /&gt;System engineer&lt;BR /&gt;Infosys ltd&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sat, 08 Apr 2023 03:50:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45152#M1450</guid>
      <dc:creator>aanchalm</dc:creator>
      <dc:date>2023-04-08T03:50:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Font Color</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45153#M1451</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/28828"&gt;@aanchalm&lt;/a&gt; - Understood thanks for clarifying your query : Please follow below approach:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;1) Add a custom action in one of your excel extended VBOs - Add Criteria to Filter by Font Colour - See below and &lt;STRONG&gt;Add inputs as : Handle, Worksheet Name, WorkBook Name, and Field&lt;/STRONG&gt;.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25297.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25429i751FBF81604F204E/image-size/large?v=v2&amp;amp;px=999" role="button" title="25297.png" alt="25297.png" /&gt;&lt;/span&gt;&lt;BR /&gt;2) Add a Code Stage : Set Inputs as below&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25298.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25431iA0239C7077BF3F18/image-size/large?v=v2&amp;amp;px=999" role="button" title="25298.png" alt="25298.png" /&gt;&lt;/span&gt;&lt;BR /&gt;3) Write below Code : Note for Criteria its hardcoded to (255, 0, 0) as per your requirement (in Red) - you can remove that colour code and set a user input for custom RGB value if your wish to choose different colour to filter.&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;&lt;STRONG&gt;Dim ws As Object&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;ws = GetWorksheet(Handle, Workbook, Worksheet)&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;ws.Activate()&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;ws.Range("A:Z").AutoFilter(Field:= Field, &lt;SPAN style="color: rgb(224, 62, 45);"&gt;Criteria1:= RGB(255, 0, 0&lt;/SPAN&gt;), Operator:= xlFilterFontColor)&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25299.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25432i1E85E94B62CD7089/image-size/large?v=v2&amp;amp;px=999" role="button" title="25299.png" alt="25299.png" /&gt;&lt;/span&gt;&lt;BR /&gt;4) Add Dll and Namespace: I will attach the dll with this response (&lt;A data-url="https://www.dllme.com/dll/files/microsoft_office_interop_excel" class="embedly-content" href="https://www.dllme.com/dll/files/microsoft_office_interop_excel" target="_blank" rel="noopener"&gt;Microsoft.Office.Interop.Excel.dll : Free .DLL download&lt;/A&gt;)- add this dll to C:\Program Files\Blue Prism Limited\Blue Prism Automate\ :&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Dll: Microsoft.Office.Interop.Excel.dll&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; NameSpace : Microsoft.Office.Interop.Excel.XLAutoFilterOperator&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Additionally you would have to specifiy the DataTable as this belongs to both of these Dll : &lt;STRONG&gt;'&lt;EM&gt;DataTable&lt;/EM&gt;' is an&amp;nbsp;&lt;EM&gt;ambiguous&lt;/EM&gt;&amp;nbsp;reference between '&lt;EM&gt;System&lt;/EM&gt;.&lt;EM&gt;Data&lt;/EM&gt;.&lt;EM&gt;DataTable&lt;/EM&gt;' and '&lt;EM&gt;Microsoft&lt;/EM&gt;.&lt;EM&gt;Office&lt;/EM&gt;.&lt;/STRONG&gt;&lt;EM&gt;&lt;STRONG&gt;Interop.Excel&lt;/STRONG&gt; &lt;/EM&gt;to let the code know which data table you are using - add reference namespace as : System.Data.DataTable so that system does not get confused which reference to use as you might have other actions which are referenced to this DataTable reference from System.Data&lt;BR /&gt;&lt;BR /&gt;See below: &lt;span class="lia-inline-image-display-wrapper" image-alt="25300.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25433i77C7D81AA2AD9970/image-size/large?v=v2&amp;amp;px=999" role="button" title="25300.png" alt="25300.png" /&gt;&lt;/span&gt;&lt;BR /&gt;5) Publish the Action and Call from Process :&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25301.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25437i62E9A915395B5E76/image-size/large?v=v2&amp;amp;px=999" role="button" title="25301.png" alt="25301.png" /&gt;&lt;/span&gt;&lt;BR /&gt;7) Result/Ouput:&lt;BR /&gt;Excel before Code:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25302.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25436iA27B4B3149C6268E/image-size/large?v=v2&amp;amp;px=999" role="button" title="25302.png" alt="25302.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Excel After Code:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25303.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/25434iD831EAD8E79A60A5/image-size/large?v=v2&amp;amp;px=999" role="button" title="25303.png" alt="25303.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Let me know if you face any difficulties implementing this.&lt;BR /&gt;&lt;BR /&gt;&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>Sat, 08 Apr 2023 12:21:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45153#M1451</guid>
      <dc:creator>Mukeshh_k</dc:creator>
      <dc:date>2023-04-08T12:21:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Font Color</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45154#M1452</link>
      <description>&lt;P&gt;Attached is the Dll Copy, Additionally you can download this dll from : &lt;A href="https://www.dll-files.com/microsoft.office.interop.excel.dll.html&amp;nbsp;" target="test_blank"&gt;https://www.dll-files.com/microsoft.office.interop.excel.dll.html&amp;nbsp;&lt;/A&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;</description>
      <pubDate>Sat, 08 Apr 2023 12:33:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45154#M1452</guid>
      <dc:creator>Mukeshh_k</dc:creator>
      <dc:date>2023-04-08T12:33:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Font Color</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45155#M1453</link>
      <description>&lt;P&gt;Thank you so much for your help.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;aanchal mathur&lt;BR /&gt;System engineer&lt;BR /&gt;Infosys ltd&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sat, 08 Apr 2023 14:32:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Font-Color/m-p/45155#M1453</guid>
      <dc:creator>aanchalm</dc:creator>
      <dc:date>2023-04-08T14:32:00Z</dc:date>
    </item>
  </channel>
</rss>

