<?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: Last cell value of an excel coulmn where we have different lengths of coulmns in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Last-cell-value-of-an-excel-coulmn-where-we-have-different/m-p/61006#M14378</link>
    <description>Hello Nilesh, i get error in code stage using xlUp, is not declared, inaccessible due to protection level. how do i declare xlUp&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kurt Efraim Paraiso&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Tue, 20 Sep 2022 05:16:00 GMT</pubDate>
    <dc:creator>chambhaa</dc:creator>
    <dc:date>2022-09-20T05:16:00Z</dc:date>
    <item>
      <title>Last cell value of an excel coulmn where we have different lengths of coulmns</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Last-cell-value-of-an-excel-coulmn-where-we-have-different/m-p/61003#M14375</link>
      <description>&lt;SPAN&gt;Hi Team, I am trying to retrieve the last cell of a column&amp;nbsp;and in my&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://forum.uipath.com/search?q=excel%20status%3Asolved" rel="nofollow noopener" target="_blank" class="linkify-word no-track-link"&gt;excel&lt;/A&gt;&lt;SPAN&gt; sheet I have different lengths of column… so I am not able to use the get row number action from Microsoft Excel VBA, as it will count the row numbers where each column&amp;nbsp;have same number of rows.&lt;BR /&gt;&lt;BR /&gt;I want to get the count of the rows for a specific column as I have columns with different row counts. Any help will be much Appreciated&lt;A onclick="return isMessageAnonymous(false);" id="MainCopy_ctl05_PostMessageContributedContent_BtnSave" class="btn btn-primary message-button" containerid="hl-csslinkbutton" role="button" target="_blank"&gt;&lt;/A&gt;Post&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mithun Nahak&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Nov 2020 04:28:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Last-cell-value-of-an-excel-coulmn-where-we-have-different/m-p/61003#M14375</guid>
      <dc:creator>RPAJob_Opportun</dc:creator>
      <dc:date>2020-11-24T04:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Last cell value of an excel coulmn where we have different lengths of coulmns</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Last-cell-value-of-an-excel-coulmn-where-we-have-different/m-p/61004#M14376</link>
      <description>Hi Mithun,&lt;BR /&gt;&lt;BR /&gt;Please use below code to get your last row.&lt;BR /&gt;&lt;BR /&gt;Dim LR As Long&lt;BR /&gt;&lt;BR /&gt;LR = Cells(Rows.Count, 1).End(xlUp).Row (Put your column number where 1 is mention)&lt;BR /&gt;&lt;BR /&gt;I hope it will help you.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Nilesh&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nilesh Jadhav &lt;BR /&gt;Senior RPA Specialist&lt;BR /&gt;ADP&lt;BR /&gt;India&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Nov 2020 12:08:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Last-cell-value-of-an-excel-coulmn-where-we-have-different/m-p/61004#M14376</guid>
      <dc:creator>NileshJadhavBP</dc:creator>
      <dc:date>2020-11-24T12:08:00Z</dc:date>
    </item>
    <item>
      <title>RE: Last cell value of an excel coulmn where we have different lengths of coulmns</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Last-cell-value-of-an-excel-coulmn-where-we-have-different/m-p/61005#M14377</link>
      <description>You should guard against the last cell in the worksheet having data.&lt;BR /&gt;&lt;BR /&gt;Dim lastCell As Object&lt;BR /&gt;'Please arrange sheet names and column indexes for user input&lt;BR /&gt;lastCell = Sheet1.Cells(Sheet1.Rows.Count, 1)&lt;BR /&gt;&lt;BR /&gt;Dim lastRow As Integer&lt;BR /&gt;lastRow = IIf(lastCell.Value &amp;lt;&amp;gt; "", lastCell.Row, lastCell.End(-4162).Row)&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, 24 Nov 2020 16:16:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Last-cell-value-of-an-excel-coulmn-where-we-have-different/m-p/61005#M14377</guid>
      <dc:creator>AntonHosang1</dc:creator>
      <dc:date>2020-11-24T16:16:00Z</dc:date>
    </item>
    <item>
      <title>RE: Last cell value of an excel coulmn where we have different lengths of coulmns</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Last-cell-value-of-an-excel-coulmn-where-we-have-different/m-p/61006#M14378</link>
      <description>Hello Nilesh, i get error in code stage using xlUp, is not declared, inaccessible due to protection level. how do i declare xlUp&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kurt Efraim Paraiso&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Sep 2022 05:16:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Last-cell-value-of-an-excel-coulmn-where-we-have-different/m-p/61006#M14378</guid>
      <dc:creator>chambhaa</dc:creator>
      <dc:date>2022-09-20T05:16:00Z</dc:date>
    </item>
    <item>
      <title>RE: Last cell value of an excel coulmn where we have different lengths of coulmns</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Last-cell-value-of-an-excel-coulmn-where-we-have-different/m-p/61007#M14379</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="c4a4a217-d34b-4b32-a666-cc726f7bfa65" data-tag-text="@Kurt Efraim Paraiso" href="https://community.blueprism.com/network/profile?UserKey=c4a4a217-d34b-4b32-a666-cc726f7bfa65" data-itemmentionkey="30bba5c8-fb70-4954-944b-ab04c10479d8"&gt;@Kurt Efraim Paraiso&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Instead of using xlUp you can use &lt;STRONG&gt;-4162 as value&lt;/STRONG&gt; and it should resolve your issue. &lt;STRONG&gt;xlUp is just an enum whose value is -4162​&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Manpreet Kaur&lt;BR /&gt;Manager&lt;BR /&gt;Deloitte&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Sep 2022 10:00:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Last-cell-value-of-an-excel-coulmn-where-we-have-different/m-p/61007#M14379</guid>
      <dc:creator>ManpreetKaur1</dc:creator>
      <dc:date>2022-09-20T10:00:00Z</dc:date>
    </item>
  </channel>
</rss>

