<?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: MS EXCEL VBO - Taking much time to read 20k records in v7.4.1 in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/MS-EXCEL-VBO-Taking-much-time-to-read-20k-records-in-v7-4-1/m-p/124099#M54251</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/399"&gt;@Nandhakumar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have recently done an update to the asset 10.6.2, it may not have made it to the DX just yet, so keep an eye out.&lt;/P&gt;&lt;P&gt;We recently revised the asset and if you try using the "Value2" as the fetchDatawithMethodValue, I am sure you will see the results you desire.&lt;/P&gt;&lt;P&gt;Thanks for bringing this to our attention.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;</description>
    <pubDate>Fri, 19 Dec 2025 12:00:37 GMT</pubDate>
    <dc:creator>GeoffHirst</dc:creator>
    <dc:date>2025-12-19T12:00:37Z</dc:date>
    <item>
      <title>MS EXCEL VBO - Taking much time to read 20k records in v7.4.1</title>
      <link>https://community.blueprism.com/t5/Product-Forum/MS-EXCEL-VBO-Taking-much-time-to-read-20k-records-in-v7-4-1/m-p/124097#M54249</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;Has anyone encountered a massive performance difference in reading excel file with approx 20k records in BP v7.4.1?&lt;/P&gt;&lt;P&gt;excel file in v6.10 in 2-5 seconds but the same file is taking more than 30mins in v7.4.1.&lt;/P&gt;&lt;P&gt;Using Get worksheet as Collection(Offset) action to read the data.&lt;/P&gt;&lt;P&gt;Please let me know if there are any suggestions.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Nandha&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2025 05:42:28 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/MS-EXCEL-VBO-Taking-much-time-to-read-20k-records-in-v7-4-1/m-p/124097#M54249</guid>
      <dc:creator>Nandhakumar</dc:creator>
      <dc:date>2025-12-19T05:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: MS EXCEL VBO - Taking much time to read 20k records in v7.4.1</title>
      <link>https://community.blueprism.com/t5/Product-Forum/MS-EXCEL-VBO-Taking-much-time-to-read-20k-records-in-v7-4-1/m-p/124098#M54250</link>
      <description>&lt;P&gt;Excel VBO takes time to read data if data is more than 12K, how you can try OLEDB VBO to read data from excel file without opening it or you can use below code to read data from closed excel file and also from csv file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paste this below code in global code and call this function in code stage and necessary DLLs&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Public Function ExcelSheetRead(ByVal filepath as String,sheetname as string, distinct as string, textformat as boolean) As DataTable
		Dim dt As DataTable = New DataTable()
		Dim Con As OleDbConnection

		if textformat = true then
			Con  = New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;" &amp;amp; "Data Source=" &amp;amp; filepath &amp;amp; ";Extended Properties=" + ChrW(34) &amp;amp; "Excel 12.0 Xml;HDR=No;IMEX=1;ImportMixedTypes=Text;" + ChrW(34) &amp;amp; ";")
		else
			Con  = New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;" &amp;amp; "Data Source=" &amp;amp; filepath &amp;amp; ";Extended Properties=Excel 12.0;")
		end if
		Con.Open()

		Try
			Dim SQLQuery as string
			if distinct = "Yes" then
				SQLQuery = "Select Distinct * from [" &amp;amp; sheetname &amp;amp; "$]"
			else
				SQLQuery = "Select * from [" &amp;amp; sheetname &amp;amp; "$]"
			end if
			Dim oCon As OleDbCommand = New OleDbCommand(SQLQuery,Con)
			Dim adp As OleDbDataAdapter = New OleDbDataAdapter(OCon)
			adp.Fill(dt)
			
		Catch e_ As Exception
		
		End Try

		Con.Close()
		Return dt
End Function&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2025 10:41:15 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/MS-EXCEL-VBO-Taking-much-time-to-read-20k-records-in-v7-4-1/m-p/124098#M54250</guid>
      <dc:creator>naveed_raza</dc:creator>
      <dc:date>2025-12-19T10:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: MS EXCEL VBO - Taking much time to read 20k records in v7.4.1</title>
      <link>https://community.blueprism.com/t5/Product-Forum/MS-EXCEL-VBO-Taking-much-time-to-read-20k-records-in-v7-4-1/m-p/124099#M54251</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/399"&gt;@Nandhakumar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have recently done an update to the asset 10.6.2, it may not have made it to the DX just yet, so keep an eye out.&lt;/P&gt;&lt;P&gt;We recently revised the asset and if you try using the "Value2" as the fetchDatawithMethodValue, I am sure you will see the results you desire.&lt;/P&gt;&lt;P&gt;Thanks for bringing this to our attention.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2025 12:00:37 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/MS-EXCEL-VBO-Taking-much-time-to-read-20k-records-in-v7-4-1/m-p/124099#M54251</guid>
      <dc:creator>GeoffHirst</dc:creator>
      <dc:date>2025-12-19T12:00:37Z</dc:date>
    </item>
  </channel>
</rss>

