Hello!
Unfortunately, I have not worked with VBA arrays so far, and thus I don't know of how to transfer values in a column to an array. I hope someone can help me find a solution for it
I have a variable list of URLs in column (("A1:A" & lastRow)) of worksheet "sheet1" wherêby
lastRow = .Cells(.rows.Count, "A").End(xlUp).Row
The array I need to use in a VBA Sub is as following:
In the above example VBA array urls, there are only two URLs and I need all URLs of column A in "sheet1" to be in that specific array.
Thank you for helping me!
Unfortunately, I have not worked with VBA arrays so far, and thus I don't know of how to transfer values in a column to an array. I hope someone can help me find a solution for it
I have a variable list of URLs in column (("A1:A" & lastRow)) of worksheet "sheet1" wherêby
lastRow = .Cells(.rows.Count, "A").End(xlUp).Row
The array I need to use in a VBA Sub is as following:
VBA Code:
urls = Array("https://www.bizbuysell.com/Business-Opportunity/covid-friendly-commercial-cleaning-est-30-years-100k-net/1753433/?d=L2Zsb3JpZGEvaGlsbHNib3JvdWdoLWNvdW50eS1idXNpbmVzc2VzLWZvci1zYWxlLzI/cT1hVEk5T0RFc01qQXNNekFzTnpnbWJtRndQV1UlM0Q=", _
"https://www.bizbuysell.com/Business-Opportunity/Established-Cleaning-Business-Tampa-St-Pete/1849521/?utm_source=bizbuysell&utm_medium=emailsite&utm_campaign=shtmlbot&utm_content=headline")
In the above example VBA array urls, there are only two URLs and I need all URLs of column A in "sheet1" to be in that specific array.
Thank you for helping me!