I was lucky enough to get a response from someone on a previous question I have asked. See here.
Only thing I am struggling with is creating a loop that will end the macro upon reaching a blank cell in Column B. I have been trying to read other code but nothing was really clicking for me (if, than loops, End With Loops, etc). This is the last step to my macro and I would love any resources on how to create loops and/or a solution to this issue for me. Thanks as always. The people on this site are beyond helpful!
Sub Redirect()
Dim IE As Object
Dim doc As Object
Set IE = CreateObject("InternetExplorer.Application")
With IE
.Visible = True
.Navigate "https://...."
Do Until .ReadyState = 4: DoEvents: Loop
With .Document.forms("digiSHOP")
.elements("OldUrl").Value = Range("A2")
.elements("NewUrl").Value = Range("B2")
.submit
End With
Do Until .ReadyState = 4: DoEvents: Loop
Do While .Busy: DoEvents: Loop
End With
End Sub