DominicB,
Thank you for your reply. I tried to decipher that info on the link you gave me... and yes, I know why the "ease of use" is set to hard. I ended up browsing the web to look for other methods.. and ended up using something like this:
Const PostUser As String = "handle=" 'Change user name here
Const PostPassword As String = "&password=" 'Change password here
MyPost = PostUser & Trim(Range("C4").Value) & PostPassword & Trim(Range("C5").Value)
p = Range("C6").Value
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;" & MyUrl, Destination:=Cells(1, 1))
.PostText = MyPost
And it works. However, I don't know if its the BEST way to do it...
Thanks for your input!
Bookmarks