I have a map on a website which changes with time (interactive) and I would like to insert it on the excel sheet.
I am using this code but it does not show the HTML:
Private Sub Mapit()
URL = Sheets("sheet1").Cells(1, 1) //Here there is written the link to the website that want to show on excel
Sheets("sheet1").Pictures.Insert(URL).Select End Sub
Is that possible? I guess that Sheets("sheet1").Pictures.Insert(URL).Select is the problem but I am not able to find which is the correct way.
Thank you for your time