Web Scraping With Loops

Q

qcan

Hi,

I need some help & guidance please.

Although I can record a macro and make minor modifications with the
code, I know next to nothing about VBA programming. I am looking for a
simple macro (I hope) that would look into a specific sheet (called
main) that would contain a unique URL on each line that I would like
to inport into another spreadheet (called MAIN2). Each time it does
this, I would like it to add to column "Z" the URL that it pertains
to. Once done, it would once again go to main and look for the next
line that conatins yet another unique URL and then would return the
data back to the next available row etc etc.

Thanks.
 
J

JLGWhiz

Are all of the unique URLs in a single column in Sheets("Main")?

If so, assume they are in column A. If they are in another column you
will neet to modify the code below:

Sub URLMain2()
Dim c As Range, lr As Long
lr = Sheets("Main").Cells(Rows.Count, 1).End(xlUp).Row
For Each c In Sheets("Main").Range("A2:A" & lr)
If Not c Is Nothing Then
c.Copy Sheets("Main2").Range("Z" & Cells(Rows.Count, 26) _
.End(xlUp).Row + 1)
End If
Next
End Sub
 
Q

qcan

Are all of the unique URLs in a single column in Sheets("Main")?

If so, assume they are in column A.  If they are in another column you
will neet to modify the code below:

Sub URLMain2()
Dim c As Range, lr As Long
      lr = Sheets("Main").Cells(Rows.Count, 1).End(xlUp).Row
      For Each c In Sheets("Main").Range("A2:A" & lr)
         If Not c Is Nothing Then
            c.Copy Sheets("Main2").Range("Z" & Cells(Rows.Count, 26) _
              .End(xlUp).Row + 1)
         End If
      Next
End Sub








- Show quoted text -

Yes, your assumptions are correct. Unfortunatly, I got a runtime error
"9" when executing it (subscript out of range). The erro appear to be
on this line....

lr = Sheets("Main").Cells(Rows.Count, 1).End(xlUp).Row

Sorry... I am not sure how to fix this. Can you help ?

Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Web Scraping With Loops 2
Importing Web Page 1
Do Loops 3
Nesting For loops 2
loops 3
Importing several web pages with macro/VBA? 9
Arrays and Loops 9
Find Specific Rows in Range and Create New Tab 18

Top