Hello there!

I have used a very simple script for reatrieving data from a table:

Private Sub UpdateList_btn_Click()
    'MsgBox "Update"
    Sheets("LISTA").Select
    Range("A2:L1").QueryTable.Refresh BackgroundQuery:=False
End Sub
The script worked alright before but since the owner of the webpage which the querytable refers to made some changes it is not working anymore. The problem is that you need to be logged in to reach the URL. I think the problem is that the querytable opens a new session(?) of my browser and therefore is not aware of that I am logged in. Is there a way to make the querytable refer to the current browser session?

Or is there some kind of workaround? Appreciate all help!

//Olle