Eh no, non hai seguito i consigli di Max...
Il test Is Nothing non e' sufficiente e forse non serve nemmeno; ma gli devi aggiungere il test sulla lunghezza della collezione CollA come mostrato qui:
If Not CollA Is Nothing Then
If CollA.Length > 5 Then '+++
'trovato su tlx
'gestisci i dati da tlx
On Error Resume Next
dati = Array(0, 0, 14, 1, 5, 3, 16, 17, 18, 19, 23, 24, 25, 26, 27)
For I = 2 To 14
Cells(N, I) = CollA(dati(I)).innerText
Next I
' Ws1.Range("O" & N) = "T"
On Error GoTo 0
'
'Debug.Print N, MyIsin, "Su Tlx"
End If '+++
End If '..
Ho aggiunto il livello If /End If marcato +++