<?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: How to get the cel reference for a particular value in excel using Blueprism in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73269#M25874</link>
    <description>&lt;DIV class="uconBody"&gt;&lt;DIV style="page: WordSection1"&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;Please find the below screenshot of the code stage which I used in my blueprism.&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27770.jpg"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27901iFEE0AFC69D01A242/image-size/large?v=v2&amp;amp;px=999" role="button" title="27770.jpg" alt="27770.jpg" /&gt;&lt;/span&gt;&lt;SPAN style="color:windowtext"&gt;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;Janani PR&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 08 Dec 2020 12:18:00 GMT</pubDate>
    <dc:creator>JananiPR1</dc:creator>
    <dc:date>2020-12-08T12:18:00Z</dc:date>
    <item>
      <title>How to get the cel reference for a particular value in excel using Blueprism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73265#M25870</link>
      <description>Hello Everyone,&lt;BR /&gt;&lt;BR /&gt;I have a requirement for getting the cel reference for a particular value in excel using blueprism. Can aynone help me to code this in blueprism.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Janani PR&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Janani PR&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 04 Dec 2020 12:37:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73265#M25870</guid>
      <dc:creator>JananiPR1</dc:creator>
      <dc:date>2020-12-04T12:37:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to get the cel reference for a particular value in excel using Blueprism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73266#M25871</link>
      <description>Hello Janani &lt;BR /&gt;&lt;BR /&gt;The below mentioned code will give you the cell address of the first occurrence of the value:&lt;BR /&gt;&lt;BR /&gt;Inputs: Workbook,Worksheet,Handle and Findmatch&lt;BR /&gt;Output: CellAddress&lt;BR /&gt;&lt;BR /&gt;Dim wb, ws As Object&lt;BR /&gt;Dim excel, sheet As Object&lt;BR /&gt;&lt;BR /&gt;wb = GetWorkbook(Handle, Workbook)&lt;BR /&gt;ws = GetWorksheet(Handle, Workbook, Worksheet)&lt;BR /&gt;&lt;BR /&gt;wb.Activate()&lt;BR /&gt;ws.Activate()&lt;BR /&gt;excel = ws.Application&lt;BR /&gt;sheet = excel.ActiveSheet&lt;BR /&gt;CellAddress=sheet.Cells.Find(What:=Findmatch, LookIn:=-4123, LookAt:=1, SearchOrder _&lt;BR /&gt;:=1, SearchDirection:=1 ,MatchCase:=False, SearchFormat:=False).Address&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nupur Sood&lt;BR /&gt;Research Associate&lt;BR /&gt;S&amp;amp;P&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 04 Dec 2020 12:42:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73266#M25871</guid>
      <dc:creator>NupurSood</dc:creator>
      <dc:date>2020-12-04T12:42:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to get the cel reference for a particular value in excel using Blueprism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73267#M25872</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV style="page: WordSection1"&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;Hi Nupur Sood,&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;I tried the below code for finding the cell reference ..But its shows the below error:&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27768.jpg"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27898i3A3B48FE2D86836E/image-size/large?v=v2&amp;amp;px=999" role="button" title="27768.jpg" alt="27768.jpg" /&gt;&lt;/span&gt;&lt;SPAN style="color:windowtext"&gt;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;Can u help me to resolve the issue?&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;Janani PR&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Dec 2020 10:27:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73267#M25872</guid>
      <dc:creator>JananiPR1</dc:creator>
      <dc:date>2020-12-07T10:27:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to get the cel reference for a particular value in excel using Blueprism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73268#M25873</link>
      <description>Hello Janani&lt;BR /&gt;&lt;BR /&gt;Am not sure why are you getting these errors because the code works fine at my end. Would you be able to add a screenshot of your code stage please.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nupur Sood&lt;BR /&gt;Research Associate&lt;BR /&gt;S&amp;amp;P&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Dec 2020 05:20:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73268#M25873</guid>
      <dc:creator>NupurSood</dc:creator>
      <dc:date>2020-12-08T05:20:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to get the cel reference for a particular value in excel using Blueprism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73269#M25874</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV style="page: WordSection1"&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;Please find the below screenshot of the code stage which I used in my blueprism.&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27770.jpg"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27901iFEE0AFC69D01A242/image-size/large?v=v2&amp;amp;px=999" role="button" title="27770.jpg" alt="27770.jpg" /&gt;&lt;/span&gt;&lt;SPAN style="color:windowtext"&gt;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="margin: 0cm;font-size: 11.0pt;font-family: &amp;quot;Calibri&amp;quot;,sans-serif;color: #17171E"&gt;&lt;SPAN style="color:windowtext"&gt;Janani PR&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Dec 2020 12:18:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73269#M25874</guid>
      <dc:creator>JananiPR1</dc:creator>
      <dc:date>2020-12-08T12:18:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to get the cel reference for a particular value in excel using Blueprism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73270#M25875</link>
      <description>Get rid of the underscore - that's the continuation separator that Nupur used to split the code onto 2 lines. You have it in one line, so get rid.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Anton Hosang&lt;BR /&gt;RPA Developer&lt;BR /&gt;Smart Automation Services&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Dec 2020 16:01:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73270#M25875</guid>
      <dc:creator>AntonHosang1</dc:creator>
      <dc:date>2020-12-08T16:01:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to get the cel reference for a particular value in excel using Blueprism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73271#M25876</link>
      <description>How use the parameters for input?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ronaldo Junior Oliveira Benzi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Oct 2022 18:53:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73271#M25876</guid>
      <dc:creator>Ronaldo_JuniorO</dc:creator>
      <dc:date>2022-10-17T18:53:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to get the cel reference for a particular value in excel using Blueprism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73272#M25877</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/54074"&gt;@Ronaldo_JuniorO&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;You can open any action page within any business object in Object Studio. Upon double clicking on the 'Start' stage, you can see that you will get the start stage properties where you can add input parameters and map them to data items in that action page to map.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;For example, below you can see I have opened the '&lt;STRONG&gt;Start&lt;/STRONG&gt;' stage of the '&lt;STRONG&gt;Remove Blank Rows&lt;/STRONG&gt;' action within '&lt;STRONG&gt;MS Excel&lt;/STRONG&gt;' VBO. Here, I can click on the 'Add' button and assign input parameters to different data items:&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="27782.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/27917iF98EDF4158C026BE/image-size/large?v=v2&amp;amp;px=999" role="button" title="27782.png" alt="27782.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>Mon, 17 Oct 2022 22:26:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-get-the-cel-reference-for-a-particular-value-in-excel/m-p/73272#M25877</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-10-17T22:26:00Z</dc:date>
    </item>
  </channel>
</rss>

