<?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 Search excel cell value in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62005#M15195</link>
    <description>I have a excel with around 500 rows. Columns are not fixed one can have 1, 10. Cell value can be anywhere in the excel. I want to get a value of cell adjacent to some text value.

Cell No          Value
O30               Customer Type
P30                C123456

So I need to search "Customer Type" and then want to retrieve value "C123456" 

Please suggest a way to do this.</description>
    <pubDate>Mon, 28 Nov 2016 21:14:00 GMT</pubDate>
    <dc:creator>NiteshGoyal</dc:creator>
    <dc:date>2016-11-28T21:14:00Z</dc:date>
    <item>
      <title>Search excel cell value</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62005#M15195</link>
      <description>I have a excel with around 500 rows. Columns are not fixed one can have 1, 10. Cell value can be anywhere in the excel. I want to get a value of cell adjacent to some text value.

Cell No          Value
O30               Customer Type
P30                C123456

So I need to search "Customer Type" and then want to retrieve value "C123456" 

Please suggest a way to do this.</description>
      <pubDate>Mon, 28 Nov 2016 21:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62005#M15195</guid>
      <dc:creator>NiteshGoyal</dc:creator>
      <dc:date>2016-11-28T21:14:00Z</dc:date>
    </item>
    <item>
      <title>Hi nitesh.b.goyal,</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62006#M15196</link>
      <description>Hi nitesh.b.goyal,
You have two choices how to proceed.
1)You can build this with MS Excel VBO - it will have all the necessary Actions to deal with your task (such as go to next cell,Go to next empty cell,copy,etc..).
2)You can create a code stage to deal with this (performance wise this would be faster)</description>
      <pubDate>Fri, 02 Dec 2016 14:21:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62006#M15196</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-02T14:21:00Z</dc:date>
    </item>
    <item>
      <title>Hi Nitesh,</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62007#M15197</link>
      <description>Hi Nitesh,
I am using the same functionality and I split it up in two phases:
1) 'find cell based on value' in the MS excel VBO
2) I created a function myself withing the MS excel VBO called 'Offset Active Cell', based on some code:
              Dim Instance As Object = GetInstance(handle)
              Instance.ActiveCell.offset(Row_Offset,Column_Offset).activate
In the inputs, you need handle (number), workbook (text),  Row offset &amp;amp; Column offset. Make sure you also have data items for all these data
I hope this helps</description>
      <pubDate>Fri, 02 Dec 2016 19:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62007#M15197</guid>
      <dc:creator>matthias_vander</dc:creator>
      <dc:date>2016-12-02T19:51:00Z</dc:date>
    </item>
    <item>
      <title>I don't have  'find cell</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62008#M15198</link>
      <description>I don't have  'find cell based on value' in my MS excel VBO. Where did you get that? Sounds pretty useful.</description>
      <pubDate>Sat, 03 Dec 2016 05:01:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62008#M15198</guid>
      <dc:creator>CynthiaLibby</dc:creator>
      <dc:date>2016-12-03T05:01:00Z</dc:date>
    </item>
    <item>
      <title>I am also not able to find</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62009#M15199</link>
      <description>I am also not able to find the 'find cell based on value' in my MS excel VBO. Please tell where I can find?
?</description>
      <pubDate>Tue, 06 Dec 2016 22:23:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62009#M15199</guid>
      <dc:creator>NiteshGoyal</dc:creator>
      <dc:date>2016-12-06T22:23:00Z</dc:date>
    </item>
    <item>
      <title>Hi Matthiasvg,</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62010#M15200</link>
      <description>Hi Matthiasvg,
I am not able to find the 'find cell based on value' in my MS excel VBO. Please tell where I can find?</description>
      <pubDate>Tue, 06 Dec 2016 22:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62010#M15200</guid>
      <dc:creator>NiteshGoyal</dc:creator>
      <dc:date>2016-12-06T22:25:00Z</dc:date>
    </item>
    <item>
      <title>You can use this code to</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62011#M15201</link>
      <description>You can use this code to create that function. It will look for the value and activate it:
        Dim wb As Object
        wb = GetWorkbook(Handle, Workbook)
        wb.activesheet.Cells.Find(What:=Cell_value).Activate
You need the handle, workbook and cell value as inputs</description>
      <pubDate>Wed, 07 Dec 2016 15:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62011#M15201</guid>
      <dc:creator>matthias_vander</dc:creator>
      <dc:date>2016-12-07T15:51:00Z</dc:date>
    </item>
    <item>
      <title>@Matthiasvg</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62012#M15202</link>
      <description>@Matthiasvg
i have tried the above code but it shows the below error:
Internal : Could not execute code stage because exception thrown by code stage: The given key was not present in the dictionary.
Could please guide me how to proceed writing the code in an new object studio as we use in Excel VBA to intract with excel.</description>
      <pubDate>Thu, 08 Dec 2016 08:37:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62012#M15202</guid>
      <dc:creator>Vijaya_KumarA</dc:creator>
      <dc:date>2016-12-08T08:37:00Z</dc:date>
    </item>
    <item>
      <title>@Matthiasvg</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62013#M15203</link>
      <description>@Matthiasvg
i have tried the above code but it shows the below error:
Internal : Could not execute code stage because exception thrown by code stage: The given key was not present in the dictionary.
Could please guide me how to proceed writing the code in an new object studio as we use in Excel VBA to intract with excel.</description>
      <pubDate>Fri, 09 Dec 2016 11:27:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62013#M15203</guid>
      <dc:creator>Vijaya_KumarA</dc:creator>
      <dc:date>2016-12-09T11:27:00Z</dc:date>
    </item>
    <item>
      <title>Works great! thanks for the</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62014#M15204</link>
      <description>Works great! thanks for the share!</description>
      <pubDate>Tue, 24 Jan 2017 08:30:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62014#M15204</guid>
      <dc:creator>Juan_EstebanLóp</dc:creator>
      <dc:date>2017-01-24T08:30:00Z</dc:date>
    </item>
    <item>
      <title>Hi Matthiasvg/Juan.Lopez,…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62015#M15205</link>
      <description>Hi Matthiasvg/Juan.Lopez,
&amp;nbsp;
I am getting the error&amp;nbsp;
""Internal : Could not execute code stage because exception thrown by code stage: The given key was not present in the dictionary."" for above code.&amp;nbsp;
Could you please help</description>
      <pubDate>Sun, 21 Jan 2018 18:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Search-excel-cell-value/m-p/62015#M15205</guid>
      <dc:creator>YogitaKulkarni</dc:creator>
      <dc:date>2018-01-21T18:58:00Z</dc:date>
    </item>
  </channel>
</rss>

