How to get two dimensional array from a two dimensional filtered range

ForumExcel

New Member
Joined
Jan 17, 2017
Messages
21
Code:
Set rst = CreateObject("ADODB.Recordset")
Set sourceRange = qt.ResultRange.SpecialCells(xlcellTypeVisible)
arr = sourceRange.Value

When the spreadsheet is not filtered arr (an array) is a two-dimensional range with number of rows and columns as expected. I use this arr to populate rst to put data in database.

But when filtered on one column, which in one of my examples, gives one row below headers, arr is only one row, the header row. I know this because I print out the arr. Same thing happens even when my filter gives more than one rows.

How can I get all filtered rows? I need this to work so multiple users can work simultaneously to upload different sections of spreadsheet.

I'd appreciate your help.

Thank you!
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.

Forum statistics

Threads
1,226,735
Messages
6,192,733
Members
453,752
Latest member
Austin2222

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top