I've got a variant let's say var(9,175) (obtained using ADO object for reading excel) where 9 represents the columns and 175 represents the rows, filled with some data.
- How can I retrieve entire row data (for each column value the row number will be same, obvious) based on 3 columns (for the same row) taken from other workbook. So, the matching keys will be these 3 column values from other workbook.
- I don't want to perform the looping operation, as it'll be time-consuming.
Example: In variant var I've got some data at 2nd row as:
#125 a [68] :1 [197] :2 1 1645 123
From other workbook, I took the data as:
[68] :1 [197]
Based on these 3 values, How can I directly get the data of the 2nd row entirely based on some Find or Match commands?
It's not clear to me what you're trying to do exactly, but if you know the row-number in the array that you want the entire row from, then you can use the
Worksheet.Index
function.Here's an example using a dummy 2D array: