This is the same macro that I've run on spreadsheets with 500 artifacts from a sale, but this particular one is being run on 68,000 rows of artifact sales and I'm getting an Out of Range error and I'm not sure why.
VBA Code:
Sub URLtoImage()
Dim i As Long
Dim c As Range
Dim tx As String
Dim va, ary
Application.ScreenUpdating = False
va = Range("A3", Cells(Rows.Count, "A").End(xlUp))
tx = "http://ai-drupal-10:8888/sites/default/files/feeds/auctions/images/AUCTION_DATE/"
For i = 1 To UBound(va, 1)
ary = Split(va(i, 1), "/")
va(i, 1) = tx & ary(UBound(ary))
Next
Range("I3").Resize(UBound(va, 1), 1) = va
Range("J3").Resize(UBound(va, 1), 1) = va
Range("K3").Resize(UBound(va, 1), 1) = va
Range("L3").Resize(UBound(va, 1), 1) = va
Application.ScreenUpdating = True
MsgBox "URL to Image Macro complete!"
End Sub