How can i see an internet page within an excel tab?

yomero

Active Member
Joined
May 14, 2008
Messages
257
Is this possible?
How can i see an internet page within an excel tab?
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Put a Microsoft Web Browser control on the sheet. Navigate to required web page using:
Code:
Private Sub CommandButton1_Click()
    WebBrowser1.Navigate "http://www.mrexcel.com"
End Sub
 
Upvote 0
Put a Microsoft Web Browser control on the sheet. Navigate to required web page using:
Code:
Private Sub CommandButton1_Click()
    WebBrowser1.Navigate "http://www.mrexcel.com"
End Sub

Thx!
I am having an issue, when i click on it, in any link, or even in any part within the web control, the print pop message appears...how can i avoid this, and why is it showing????
 
Upvote 0
I have the same problem (Windows XP SP3, IE8, Excel 2003 SP3). Click on a link and the Print dialogue appears. Click Cancel and IE navigates to the web page. It seems that IE/Excel is using 'Print Target' for the default action of clicking on a link, instead of 'Open'. If you right-click on a link these are amongst the options in the context menu. No idea why it happens or what the proper fix is, but a workaround is:
Code:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
    If ActiveSheet.Name = "Sheet1" Then Cancel = True
End Sub
where Sheet1 is the name of the sheet containing the web browser.

The problem doesn't occur with a Web Browser control embedded in a Word document, so it looks like a bug with IE/Excel interaction.
 
Upvote 0

Forum statistics

Threads
1,214,652
Messages
6,120,746
Members
448,989
Latest member
mariah3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top