Thank you so much for that, I should have been able to figure that run off selection out. I don't really know where to start "Object doesn't support this property or method" problem.

I hope/think it should be possible as the tag cloud generating subroutine (the third subroutine called WordCloud) works when its used in isolation and prints to a WebBrowser already present on a sheet. I tested that portion of my code by having a sheet named "Cloud" that had a WebBrowser already on it

With Sheets("Cloud").WebBrowser1
    .Silent = True
    .Navigate (myFile)
    Do
        DoEvents
    Loop Until .ReadyState = READYSTATE_COMPLETE
    .Document.body.Scroll = "no"
End With
But now trying to incorporate it with the frequency creation subroutine "MakeTable3" it's telling me "Object doesn't support this property or method." But I know it does support it! Anyhow thanks again in advance for any help this forum is a life saver...can't wait to be done with this little tool and its so very close at this point.